function genericPopup(url, target, options)	{
	
	// set reasonable defaults
	if (!target)	{ target = ""; }
	if (!options)	{ options = ""; }
	
	// you have no chance to survive, make your time
	allYourBase = window.open(url, target, options);
	setTimeout("allYourBase.focus()", 250);
}

function sizedPopup(url, target, x, y, toolbar, status, scrollbars, resize)	{
	genericPopup(url, target, "width=" + x + ",height=" + y + ",toolbar=" + toolbar + ",status=" + status + ",scrollbars=" + scrollbars + ",resizable=" + resize);
}

function sizedPopup2(url, target, x, y, t, l, toolbar, status, scrollbars, resize)	{
	genericPopup(url, target, "width=" + x + ",height=" + y + ",top=" + t + ",left=" + l + ",toolbar=" + toolbar + ",status=" + status + ",scrollbars=" + scrollbars + ",resizable=" + resize);
}