function noop()
{	window.status='Play Your Best';
}

function popup(u,n,w,h,l,t,s,r)
{	/*
	u=url
	n=name of window
	w= width
	h=height
	l=distance from left side
	t=distance from top
	s=scrollbars? boolean
	r=resizable? boolean
	*/
	var attributes="directories=no,toolbar=no,menubar=no";
	attributes += ",width=" + w;
	attributes += ",height=" + h;
	attributes += ",left=" + l;
	attributes += ",top=" + t;
	var scroll = (s>0) ? "yes" : "no" ;
	if(s>1)
	{	scroll = "auto";
	}
	var resize= (r>0) ? "yes" : "no" ;
	attributes += ",scrollbars=" + scroll;
	attributes += ",resizable=" + resize;
	window.open(u,n,attributes);
}

