// JavaScript Document
// Pop-up for emailing pdf files
function Window5()
{
	Window5 = window.open('email.htm','Window5','width=500,height=350');
}
function closeWindow5() {
	if (Window5 && Window5.open && !Window5.closed) Window5.close();
}
// Pop-up for Directions to Suite 520
function Window2()
{
	Window2 = window.open('pop_suite.htm','Window2','scrollbars=yes,width=685,height=500');
}
function closeWindow2() {
	if (Window2 && Window2.open && !Window2.closed) Window2.close();
}
// Pop-up for Directions to Lobby Level
function Window3()
{
	Window3 = window.open('pop_lobby.htm','Window3','scrollbars=yes,width=685,height=500');
}
function closeWindow3() {
	if (Window3 && Window3.open && !Window3.closed) Window3.close();
}
// Pop-up for Image of Map
function Window4()
{
	Window4 = window.open('pop_map.htm','Window4','width=320,height=395');
}
function closeWindow4() {
	if (Window4 && Window4.open && !Window4.closed) Window4.close();
}