function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function GetPara() {
	
	var str = String(window.location.search);
	if (str.length < 1) {return;}
	
	var val = '';
	var p = str.indexOf('=');

	if (p != -1) {
		val = str.substring(p + 1);
		// validera parameter!!!
		if (val.length != 1) {return;}
     	document.formContact.selectSubject[parseInt(val)].selected = true;
	} 
	// sätta focus till Namn
	document.formContact.txtName.focus();
}

function getImage(desktopURL,w,h,imgtitle) 
{ 
var idx = desktopURL.lastIndexOf("/");
var title2 = desktopURL.substring(desktopURL.lastIndexOf("/")+1,desktopURL.length-4);
if (imgtitle != null) title2 = imgtitle;
windowprops = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,width="+w+",height="+h; 
text = "<html><head><title>"+title2+"</title></head>"; 
text += "<body style=\"margin-top:0px; margin-left:0px; background-color: #ffffff;\">"; 
text += "<div align=\"center\"><img src='" + desktopURL + "'>"; 
text += "</div></body></html>"; 

view = window.open("", "Image", windowprops); 
view.document.open(); 
view.document.write(text); 
}

var FactWin = 0;
function FactWindow(str,useMenu,useScroll,w1,h1) {
	var w = 1024, h = 800;
	if (document.all) {
		/* the following is only available after onLoad */
		w = document.body.clientWidth;
		h = document.body.clientHeight;
	}
	else if (document.layers) {
		w = window.innerWidth;
		h = window.innerHeight;
	}
/*	var popM = 'yes';
	var popS = 'yes';*/
	var popW = 625;
	var popH = 400;
	//var popH = h - 100;
/*	if (nomenu != null) {popM = 'no'}*/
/*	if (noscroll != null) {popS = 'no'}*/
/*	if (noscroll = true) {popS = 'no'}*/
	if (w1 != null) {popW = w1}
	if (h1 != null) {popH = h1}

	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
/*	newwin = window.open(str,'FactWin','toolbar=no,menubar=yes,resizable=yes,scrollbars=yes,margin=0,width=' + popW + ',height=' + popH + ',left=' + leftPos + ',top=' + topPos);*/
	if(FactWin) { if(!FactWin.closed) FactWin.close(); }	
	FactWin = window.open(str,'FactWin','toolbar=no,menubar='+useMenu+',resizable=no,scrollbars='+useScroll+',margin=0,width=' + popW + ',height=' + popH + ',left=' + leftPos + ',top=' + topPos);
	FactWin.focus();
}
