//Resizes Shadow IFrame	
function ResizeShadowIFrame()
{
	window.parent.document.getElementById('popShadowIframe').style.height = (document.body.offsetHeight + 100) + 'px';
	window.parent.document.getElementById('popShadowIframe').style.width = document.body.offsetWidth + 'px';
}

//Sets the Shadow Box IFrame info
function SetShadowBoxInfo(p_sSrc, p_iWidth, p_iHeight)
{
	document.getElementById('popShadowIframe').src = p_sSrc;
	document.getElementById('popShadowIframe').style.width = p_iWidth + 'px';
	document.getElementById('popShadowIframe').style.height = p_iHeight + 'px';
}
