<!--
var win= null;

function start(rubrik) {
	netscape = (navigator.appName == "Netscape");
	n4 = netscape && (parseInt(navigator.appVersion) >= 4);
	explorer = (navigator.appName == "Microsoft Internet Explorer");
	ie = explorer && (parseInt(navigator.appVersion) >= 4);
	ie4 = explorer && (parseInt(navigator.appVersion) == 4);
	ie5 = explorer && (navigator.appVersion.indexOf('MSIE 5') > 0);
	mac = navigator.userAgent.indexOf('Mac') > 0;
	win = navigator.userAgent.indexOf('Win') > 0;

	if (mac) {
	  newwin=window.open("php/creammodels.php?rubrik="+rubrik,"","resizable=yes,scrollbars=yes,toolbar=no,location=no")
	//  if (document.all){
		newwin.moveTo(0,0);
		newwin.resizeTo(screen.width,screen.height);
	//  }
	}
	else {
	  if (ie) {
		window.open("php/creammodels.php?rubrik="+rubrik,"","fullscreen=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no");
	  } else {
	  	breite = screen.width;
	  	hoehe = screen.height;
	  	
	  	options='width='+breite+',height='+hoehe+',top=0,left=0';
		newwin=window.open("php/creammodels.php?rubrik="+rubrik,"",options)
		if (document.all){
		  newwin.moveTo(0,0);
		  newwin.resizeTo(screen.width,screen.height);
		}
	  }
	}
}

function sedcard(pic,w,h,nr){
	w=Number(w)+0;
	h=Number(h)+140;
	var options = 'left=50,top=50,width='+w+',height='+h+',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no';
	var url = '../index.php?article_id=31&FORM[id]='+nr+'&FORM[pic]='+pic;
	var sc = window.open(url,"",options);
}
//-->