<!--
// Copyright (c) 1999 Semos Multimedia

function stopError() { return true;}
window.onerror = stopError;

var myRemote;
window.onunload=CloseRemote;

function CloseRemote()
{
	if (myRemote!=null) myRemote.close();
}

function ShowWindow(i,newURL,x,y,w,h) {

	var iAvailW= screen.availWidth;
	var iAvailH= screen.availHeight;
	if (myRemote==null) {
		  myRemote = window.open(newURL, '', 'height='+(iAvailH-2*y)+',width='+(iAvailW-2*x)+',screenX='+x+',left='+x+',screenY='+y+',top='+y+',channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0', 'myWindow');
		  myRemote.focus();
	}
	else{
		if(!myRemote.closed)	// Mora zaradi Netscape oti ako myRemote e zatvoren od strana na korisnikot puka
		{
			myRemote.close();
		}
		
		myRemote = window.open(newURL, "myRemote", "height="+(iAvailH-2*y)+",width="+(iAvailW-2*x)+",screenX="+x+",left="+x+",screenY="+y+",top="+y+",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0", "myWindow");
		myRemote.focus();
	}	
}

function dummy(){
}
// -->
