
function jsOpenWindowMail(intMailToNumber)
	{
	WindMail = window.open("", "Mail", "Width=700, Height=450, scrollbars=no, resizeable=yes dependent=yes");

	iJsImageWidth = 650;
	iJsImageHeigth = 500;
	if (iJsImageWidth >	screen.width)
		iJsImageWidth = screen.width;
	if (iJsImageHeigth >	screen.height)
		iJsImageHeigth = screen.height;
	WindMail.moveTo((screen.width-iJsImageWidth)/2,(screen.height-iJsImageHeigth)/2);
	WindMail.resizeTo(iJsImageWidth,iJsImageHeigth); 
	WindMail.window.focus();
	WindMail.location.href = "_mail.php?iMailToNumber="+intMailToNumber;
	}

function jsCloseWindow()
	{
	self.close();
	}



