function o() {
	window.status = 'NOVA users place';
}
function fullNova(){
	window.open("../index.htm", "NOVA", "fullscreen=yes,type=fullwindow,menubar=no,scrollbars=yes,toolbar=no,status=no,titlebar=no,resizeable=no");
}
function closeNova(){
	parent.self.close()
}
function openWindow(url) {
	var yes = 1;
	var no = 0;
	windowprops = "width=" + (screen.width-130) + ",height=" + (screen.height-130) + ",top=15,left=15";
	windowprops += (no ? ",menubars" : "") +
	(yes ? ",scrollbars" : "") +
	(no ? ",location" : "") +
	(no ? ",directories" : "") +
	(yes ? ",resizable" : "") +
	(no ? ",status" : "") +
	(yes ? ",toolbar" : "");
	window.open(url, 'fullPopup', windowprops);
}
