function popup(title, photo, w, h){

  var width=w, height=h;

  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;

  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;

  var msgWindow = window.open("","msgWindow", styleStr);
  var head = '<head><title>'+title+'</title><style type="text/css"><!--	body {margin-left: 0px; margin-top: 0px; margin-right: 0px;		 margin-bottom: 0px;	}--></style></head>';
  var body = '<body><img src="'+photo+'"/></body>';

  msgWindow.document.write(head + body);

}

function printPage(txt){

	
		
	
  
	
  var head = '<html><head><title>WGS Consulting Group</title><style type="text/css"><!--	body {margin-left: 0px; margin-top: 0px; margin-right: 0px;		 margin-bottom: 0px;	}p,li {font-size: 13px;} h1{color:#4FBBE7;}--></style></head>';
 
 
var body = '<body> <div style="position: absolute; left:13px; top: 15px; width:450px; visibility: visible;"><p align="right"><a href="javascript:window.print();"><img src="img/print.gif"/></a></p><p ><img align="texttop" src="img/logo.jpg"/></p>'+txt+'<hr><p>&copy; 2006 WGS Consulting Group</p></div></body></html>';
 

	 var msgWindow = window.open("","msgWindow");
	
	msgWindow.document.write(head + body);
  msgWindow.onblur=function(){
		//msgWindow.close();
	}
 
}


