	
	function new_win(link1,wh,he,xpos,ypos,win_name,status,toolbar,resize,menubar,scrollbars)
	{
		//alert('BernemKitchenStudio');
		if(!link1) link1='';
		if(!win_name) win_name='homewin';
		if(!xpos) xpos=(screen.width/2)-(wh/2);
		if(!ypos) ypos=(screen.height/2)-(he/2);
		if(!wh) wh=1003;
		if(!he) he=600;
		if(!status) status='no';
		if(!toolbar) toolbar='no';
		if(!resize) resize='no';
		if(!menubar) menubar='no';
		if(!scrollbars) scrollbars='no';
		my_win=
		window.open(link1, win_name,"scrollbars="+scrollbars+", status="+status+", toolbar="+toolbar+", resizable="+resize+",width="+wh+",height="+he+",screenx="+xpos+",screeny="+ypos+", left="+xpos+", top="+ypos);
	}

	
	