/****************************************************
ÖPPNAR NEWWIN
****************************************************/
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=yes,menubar=no,toolbar=no,resizable=yes';
win=window.open(mypage,myname,settings);}

//öppnar nytt fönster efter bildens stl.
// Detta script finns att hämta på http://www.jojoxx.net och
//   får användas fritt så länge som dessa rader står kvar.

function imgPopup2(url){
	MyWin = window.open("","","scrollbars=no,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,width=100,height=100");
	with(MyWin.document){
	open();
	write("<html>\n<head><scr"+"ipt>awidth=(document.layers)?0:8;awidth+=(document.all)?4:0;aheight=(document.layers)?0:29+50;</scr"+"ipt>\n<title>Bild</title>\n</head>\n<body onLoad=\"window.resizeTo(document.images[0].width+awidth,document.images[0].height+aheight+50)\"marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 rightmargin=0 style=\"overflow:hidden;\">\n");
	write("<img onclick=window.close() src=\""+url+"\">\n");
	write("</body>\n</html>\n");
	close();
	}
}

// tabort info i fält vid fokus
function Clear(Obj)
{
  Obj.value = "";
}

//öppnar länk ord
function openLink(url) {
  if (url != "") {
    location.href = url;
  }
  else {
    alert("Please select a site.");
  }
}


/*******************************************
emagine
**********************************************/

function openMyPaper(pid,type){
	var res_height,res_width,resOK,errorUrl,cookieOK
	resOK = false;
	res_height = screen.height;
	res_width = screen.width;
	if(res_width >= 1024 && res_height >= 768)
		resOK = true;
	
	if(resOK != true){
		if(type==1) {
			window.open('http://www.mypaper.se/show/nordemballage/show.asp?pid='+pid,'mypaper'+pid,'width=780,height=540,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
		} else {
			window.open('http://www.mypaper.se/show/nordemballage/show.asp?&action=maximize&pid='+pid,'mypaper'+pid,'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
		}
	} else {
		if(screen.width==1024) {
			window.open('http://www.mypaper.se/show/nordemballage/show.asp?action=maximize&pid='+pid,'mypaper'+pid,'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
		} else {
			window.open('http://www.mypaper.se/show/nordemballage/show.asp?pid='+pid,'mypaper'+pid,'width=1020,height=745,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
		}
	}
}