// Common Javascript function

function popWin(url)
{
	var height = window.screen.height;
	var width = window.screen.width;
	var win_dimensions = "height=" + height + ",width=" + width;
	
	hostwindow = window.open(url,"hostwindow",win_dimensions);
	
	if(hostwindow.moveTo)
		hostwindow.moveTo(0,0);		
	if(hostwindow.resizeBy)
		hostwindow.resizeBy(0,0);
}

function flashPutHref(href) { location.href = href;}
		
function flashPutTitle(title) { document.title = title; }	

function PopupMailingList() {
	mailing_list_window = window.open('MailingList.aspx', 'MailingList', 'height=540, width=690, toolbar=0, location=0, scrollbars=0, resizable=1');
}

function PopupPrivacy(){
	privacy_window = window.open('privacy.htm', 'Privacy', 'height=570, width=600, toolbar=0, location=0, scrollbars=1, resizable=1');
}
function PopupMap(){
	privacy_window = window.open('contact_map.htm', 'map', 'height=649, width=517, toolbar=0, location=0, scrollbars=0, resizable=1');
}
