function aabnInfo(url,h,w) { 
var ww = 480, wh = 340, leftPos = null, topPos = null; 
	if (top.screen){ 
  		if (screen.width){ 
    		leftPos = Math.round((screen.width-h-10)/2); 
    		topPos = Math.round((screen.height-w-29)/2); 
  		} 
 		else {
	 	leftPos = 50 
    	topPos = 50 
  		} 
	} 

	popWin = window.open(url, 'infovindue', 'height=' + h + ',width=' + w + ',top=' + topPos + ',left=' + leftPos + '');
popWin.focus();

}


if (document.all) {
document.write('<link rel="stylesheet" type="text/css" href="/res/style/iefilter.css">\n');
}
function hiLight(objekt) {
 if(document.all&&!window.opera) {
  objekt.filters.blendTrans.apply();
  objekt.filters.blendTrans.play();
 }
}



var width = '700';
var height = '550';
var xPos = '70';
var yPos = '150';
var xPosAuto = false;
var yPosAuto = false;
var toolbar = 'no';
var locationbar = 'no';
var menubar = 'no';
var status = 'no';
var scrollbars = 'yes';
var resizable = 'yes';

function openWindow(url){
	var screenWidth = parseInt(screen.width);
	var screenHeight = parseInt(screen.height);
	if (xPosAuto) xPos = parseInt((screenWidth-parseInt(width))/2);
	if (yPosAuto) yPos = parseInt((screenHeight-parseInt(height))/2);
		arg = 'channelmode=no,width='+width+',height='+height+',top='+yPos+',left='+xPos+',toolbar='+toolbar+',location='+locationbar+',status='+status+',menubar='+menubar+',scrollbars='+scrollbars+',resizable='+resizable;
	window.open(url,'',arg);
}
