<!-- 
function popEmailVerify(docsrc) {

var docwidth = 250, docheight = 150, docleft = ((screen.width/2) - 125), doctop = ((screen.height/2) - 125);
	if (window.win && window.win.open && !window.win.closed){
		win.focus();
	}
	else
	{
	win = window.open(docsrc, 'Room', 'toolbars=no,scrollbars=yes,location=no,statusbars=no,menubars=no,resizable=no,width=' + docwidth + ',height=' + docheight + ',left=' + docleft + ',top=' + doctop);
	}
}
// -->
