function printWindow(URLStr)
{
	popUpWin = open(URLStr, 'PrintWindow', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width=500,height=500,left=10, top=10,screenX=10,screenY=500');
	popUpWin.focus();
}
function sendWindow() 
{
		LeftPosition = (screen.width) ? (screen.width-600)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-200)/2 : 0;
		settings =
		'height=200,width=600,top='+TopPosition+',left='+LeftPosition+',scrollbars=no,status';
		win = window.open('./send', 'send', settings);
		win.focus();
}