<!--
function openWindow(url,x,y,screenX,screenY,top,left) {
mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=' + x + ',height=' + y + ',screenX=' + screenX + ',screenY=' + screenY + ',top=' + top + ',left=' + left);
//window.location.href='thankyou.html';
mywin.focus();
}

function openWindow2(windowname)
{
	if (windowname=='contact')
	{
	  opener.window.location.href='/contact/default.asp';
	  window.location.href='javascript:closewindow()';
	  opener.window.focus();
	}
}

function closewindow()
{
  window.close();
}

function printpage() 
{
  window.print();  
}

//-->

