// JavaScript Document

function ShowWizard(){
	
PopupPositionLeft = (document.all)?(document.body.clientWidth)/2:(window.innerWidth)/2;

document.getElementById('wizardLogin').style.left = 237+PopupPositionLeft+"px";

if(document.all){
if(document.body.clientHeight>document.body.scrollHeight){
PopupHeight = (document.body.clientHeight-document.body.scrollHeight)+document.body.scrollHeight;
}
else{
PopupHeight = document.body.scrollHeight;
}
}
else
{
PopupHeight = document.body.scrollHeight+window.scrollMaxY;
}

document.getElementById('TransparentPopup').style.height = PopupHeight+"px";

document.getElementById('wizardLogin').style.display = "block";
document.getElementById('TransparentPopup').style.display = "block";
}

function closeWizard(){
document.getElementById('TransparentPopup').style.display = "none";
document.getElementById('wizardLogin').style.display = "none";
}
