// Function to make a news image popup window
// Author: Chris Spurgeon (cspurgeon@marketplace.org)
// Date: 06/22/2004

function imageWindowPop(orientation,URL,altText) {
	if(orientation == 'v') {
		winheight = 600;
		winwidth = 400;
	} else {
		winheight = 500;
		winwidth = 500;
	}
	var windowURL = "/news/newsimage.php?URL=" + URL + "&alt=" + altText + "&orient=" + orientation;
	//alert(windowURL);
	theWindow = window.open(windowURL, "childWindow", "width=" + winwidth + ",height=" + winheight +",location=no,menubar=yes,scrollbars=yes,resizable=yes");	
}



function genericWindowPop(URL,h,w) {
	theWindow = window.open(URL, "childWindow", "width=" + w + ",height=" + h +",location=no,menubar=yes,scrollbars=no,resizable=yes");	
}

function launchflash() {
		window.open('/news/features/2005/09/lowrider/flash.html','pop_up','height=420,width=620,resizable=yes,scrollbars=no');
}

