function
popup(name,width,height,content)
{
	var horz = (screen.availLeft + ((screen.availWidth - width) / 2))
	var vert = (screen.availTop + ((screen.availHeight - height) / 2))
	var w = window.open(content,name,"width=" + width + ",height=" + height	+ ",screenx=" + horz + ",left=" + horz + ",screeny=" + vert + ",top=" + vert + ",directory=no,location=no,menu=no,resizable=yes,status=no,toolbar=no,scrollbars=yes")
	w.focus()
}

function
full_screen_pop(content)
{
	var horz = screen.availLeft;
	var vert = screen.availTop;
	var width = 506;
	var height = 393;
	var w = window.open(content,"fspop","width=" + width + ",height=" + height + ",screenx=" + horz + ",left=" + horz + ",screeny=" + vert + ",top=" + vert + ",directory=no,location=no,menu=no,resizable=yes,status=no,toolbar=no,scrollbars=no");
	w.focus();
}

