Event.observe('btn_play',"click",function() {
	url = 'playsample';
	newwindow=window.open(url,'name','height=150,width=250');
	if (window.focus) {newwindow.focus()}
	return false;
});