var mouseX=200;
	var mouseY=200;
	function XYpos(event){
		//alert(event.screenX + " left " + event.screenY + " down")
		mouseX=event.screenX;
		mouseY=event.screenY;
	}
	function contactus(){
		contactInfo=document.getElementById('contact');
		winRef=window.open('', '', 'location=0,status=0,scrollbars=0,menubar=0,resizable=0,toolbar=0,width=525,height=300,top='+mouseY+',left='+mouseX+',screenY='+mouseY+',screenX='+mouseX+',scrollbars=0');
		winRef.document.write('<html><head><title>Contact Us</title><style type="text/css">#contactinfo{position:absolute;top:50px;left:260px;}body{width:525px;height:300px;}</style></head><body background="http://foreveryhome.net/images/contactcard.png">');
  		//winRef.document.write('</head><body>');
  		winRef.document.write(contactInfo.innerHTML);
 		winRef.document.write('</body></html>');
		winRef.document.close();
	}