
<!--

/*
function launch (movie) {
	var mpath = movie + ".html";
	// alert (mpath);
	popupwin = window.open(mpath,"kong","height=460,width=852,resizable=0,location=0,menubar=0,scrollbars=0,status=0,titlebar=0,toolbar=0");
}
*/

var newwindow = '';

function launch(url)
{
	url = url + ".html";
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	} else {
		newwindow=window.open(url,'kong','height=480,width=852,resizable=0,location=0,menubar=0,scrollbars=0,status=0,titlebar=0,toolbar=0');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
	
	// alert(url);
	
	return false;
}


//-->