<!--
function openWindow(url,name,w,h) {
	xPos = (screen.width - w) / 2;
	yPos = (screen.height - h) / 2;
	config = 'left=' + xPos + ',screenX=' + xPos + ',top=' + yPos + ',screenY=' + yPos + ',width=' + w + ',height=' + h + 'toolbar=no,location=no,scrollbars=yes,status=no,resizable=yes,fullscreen=no'; 
	newWindow = window.open(url, name, config);
}
function openINA(url) {
	var w = 512;
	var h = 23+384+28;
	xPos = (screen.width - w) / 2;
	yPos = (screen.height - h) / 2;
	config = 'left=' + xPos + ',screenX=' + xPos + ',top=' + yPos + ',screenY=' + yPos + ',width=' + w + ',height=' + h + 'toolbar=no,location=no,scrollbars=yes,status=no,resizable=yes,fullscreen=no'; 
	newWindow = window.open('popup/ina.html?'+url, 'ina', config);
}
//-->
