// JavaScript Document

function popup(mylink, windowname, w, h, yn)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'width=' + w +',height=' + h +',scrollbars='+ yn +',resizable=yes');
	return false;
}
//onClick="return popup(this, 'terms',450,600,'yes')"