function popitup(url)
{
	newwindow=window.open(url,'name','scrollbars=auto,width=525,height=400');
	if (window.focus) 
	{
		newwindow.focus()
	}
}
function popitupSend(url)
{
	newwindow=window.open(url,'name','scrollbars=auto,width=400,height=435');
	if (window.focus) 
	{
		newwindow.focus()
	}
}
function popUp(url,Xwidth,Xheight)
{
	window.open(url,'popUp','width='+Xwidth+',height='+Xheight+',directories=0,location=0,menubar=0,status=0,titlebar=0,toolbar=0,scrollbars=1');
	return false;
}
