document.write("<div id='msgCon' style='position:absolute;width:700px;height:400px;display:none; z-index:999' class='popupLayer'>");
document.write("<form name='frmtmp' style='display:none'>");
document.write("<input type='hidden' name='msgurl' value='/VoteShows.aspx'>");
document.write("</form>");
document.write("<iframe src='' width='700' height='400' marginwidth='0' marginheight='0' name='msgfrm' scrolling='no' border='0' frameborder='0'></iframe>");
document.write("</div>");

function sendMsg()
{
	document.getElementById("msgfrm").src=document.frmtmp.msgurl.value;
	var msgcon=document.getElementById("msgCon");
	
	//msgcon.style.top=document.body.clientHeight/2-msgcon.clientHeight/2;
	msgcon.style.top=200;
	msgcon.style.left=document.body.clientWidth/2-msgcon.clientWidth/2;
	
	msgcon.style.display="";
	
	//msgcon.style.top=document.body.clientHeight/2-msgcon.clientHeight/2+document.body.scrollTop;
	msgcon.style.top=200;
	msgcon.style.left=document.body.clientWidth/2-msgcon.clientWidth/2;
	
	document.getElementById("overLayer").style.top=0;
    document.getElementById("overLayer").style.height=document.body.scrollHeight;
	document.getElementById("overLayer").style.display="inline";
	
	event.returnValue=false;
}