function OldJump(url,message){
	if(confirm(message)){
		window.open(url, 'new_window');
	}
}

function openWin(url, width, height){
	winStats='toolbar=no,location=no,directories=no,menubar=no,'
	winStats+='scrollbars=yes,resizable=yes,width=' + (width + 40) + ',height=' + (height + 40)
	floater=window.open(url,"",winStats)
}

function kl_openWin(url, width, height){
	winStats='toolbar=no,location=no,directories=no,menubar=yes,';
	winStats+='scrollbars=yes,resizable=yes,width=' + width + ',height=' + height;
	floater=window.open(url,"",winStats);
}

function MM_openBrWindow(theURL, winName, features){
	window.open(theURL,winName,features);
}