function openpopup(poptxt) {
	var winpops=window.open('','','width=450px,height=400px,resizable=yes,scrollbars=yes');
		
	var temp = winpops.document;
	temp.write('<html><head><title>Payroll Contact</title>');
	temp.write('<style>body{font:normal 12px verdana;}i{font-style:normal;}</style>');
	temp.write('</head><body><p>'+ poptxt +'</p>');
	temp.write('<p><a href="javascript:self.close()">close</a></p>');
	temp.write('</body></html>');
	temp.close();
}
