function showpopup()
{
var popWidth=500;
document.getElementById('frame_request').src="EmailToFriend.aspx";
document.getElementById('frame_request').style.display = 'block';  
document.getElementById('frame_request').style.height="390px";
document.getElementById('frame_request').style.width="500px";
document.getElementById('frame_request').style.top= "40px";//((window.screen.height-310)/2) +"px" ;//+ document.body.scrollTop; 
document.getElementById('frame_request').style.left=(window.screen.width-popWidth)/2 + "px";
document.getElementById('overlaytwo').style.display='block';
document.getElementById('overlaytwo').style.height=((document.body.scrollHeight)+50) + "px";
document.getElementById('overlaytwo').style.width=document.body.scrollWidth;

}
function showNewsandDeals()
{

document.getElementById('frame_request').src="NewsandDeals.aspx";
document.getElementById('frame_request').style.display = 'block';  
document.getElementById('frame_request').style.width='750px';
document.getElementById('frame_request').style.height='310px';



document.getElementById('frame_request').style.top= setFrameTop(310) + "px";//((window.screen.height-310)/2) +"px" ;//+ document.body.scrollTop; 
document.getElementById('frame_request').style.left=(window.screen.width-750)/2 + "px";
document.getElementById('overlaytwo').style.display='block';

document.getElementById('overlaytwo').style.height=((document.body.scrollHeight)+50) + "px";
document.getElementById('overlaytwo').style.width=document.body.scrollWidth;

}

function setFrameTop(frameHeight)
{
		var theight=document.documentElement.clientHeight;
		var diffHeight=theight-frameHeight;
		var flashTop=0;
		if(diffHeight>0)
		{frameTop=diffHeight/2};		
    
    return frameTop;
}

function setheight(height)
{
document.getElementById('frame_request').style.height=height;
}

document.write('<iframe id="overlaytwo" src="spreadpage.htm" class="overlay"></iframe><iframe id="frame_request" frameborder="0" marginwidth="0" marginheight="0" height="320" width="500" src="loading.htm" scrolling="no" class="modelPopup"></iframe>');
