window.onload=function()
{

}

function popup_window( url, id, width, height )
{
	var tempvar=document.location.toString();
	var passedparams = tempvar.lastIndexOf("?");
	if(passedparams > -1)
		url += tempvar.substring(passedparams);
	popup = window.open( url, id, 'toolbar=no,scrollbars=yes,location=no,statusbar=no,menubar=no,resizable=no,width=' + width + ',height=' + height + '' );
	popup.focus();
}
