/*****************************************
 * JavaScript: popup.js  1.1
 * 
 * last updated on 2008.11.14
 * (c) 2008 swoop inc.
 * 
 *****************************************/
var popup = 0;
var h = window.screen.availheight;

 function showAjax(url, w, h) {
	myLightWindow.activateWindow({
						href: url,
						width: w,
						height: h,
						title:'',
						type:"external"
				});
}

function showPopup(url, w, h) {
	if(popup) {
		if(!popup.closed) popup.close();
	}
	popup = window.open(url, 'popup','width='+w+',height='+h+',toolbar=no,location=no,status=yes,scrollbars=yes,resizable=no,');
}
