function maximize(isTemp) 
{
	window.moveTo(0,0);
	var w = screen.availWidth;
	var h = screen.availHeight;
	window.resizeTo(w, h);

	if (isTemp)
	{
		initFlash("temp")
	}else{
		var splashPath = document.getElementById("wheredoyoulive_wrapper")
		splashPath.style.display="block"
	}
}

function openFAQ()
{

	var FAQwin = window.open("faq.pdf")
	FAQwin.focus();
}
function openrental()
{

	var FAQwin = window.open('rent/rentthesky.aspx', '','width=600,height=500,toolbar=0,resizable=0')
	FAQwin.focus();
}
function openRequest()
{
	
	var width = 500;
	var height = 500;
	var x = (screen.availWidth-width)/2;
	var y = (screen.availHeight-height)/2;
	var RequestWin = window.open("http://www.glasshousedenver.com/splash/pop_register.aspx","request","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width=" + width + ",height=" + height + ",top="+y+",left="+x);
	RequestWin.focus();
}

function sendToFriend(email)
{
	
	var width = 350;
	var height = 222;
	var x = (screen.availWidth-width)/2;
	var y = (screen.availHeight-height)/2;
	var FriendWin = window.open("emailtofriend.aspx?email="+email,"friend","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,width=" + width + ",height=" + height + ",top="+y+",left="+x);
	FriendWin.focus();
	
}

function openImage(photo)
{
	var width = 600;
	var height = 476;
	var x = (screen.availWidth-width)/2;
	var y = (screen.availHeight-height)/2;
	var ImageWin = window.open("imagePop.aspx?photo="+photo,"image", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,width=" + width + ",height=" + height + ",top="+y+",left="+x);
	ImageWin.focus();
	
}