// ----------------------------------------------------------
//  popup
//
//  parameters:
//    - url      : url to open in a new window
//    - width    : window width
//    - height   : window height
//
// ----------------------------------------------------------

function popup(url,width,height) {				
		
	aWin = window.open(url, "view", "width=" + width + ", height=" + height + ",resizable=yes,scrollbars=yes,location=no,titlebar=no,personalbar=no,menubar=yes,locationbar=no,toolbar=no");				
	aWin.focus();
	
}



function showPic (url,width,height) 
	{			
		var s = "dependent=yes, directories=no, location=no, menubar=no, personalbar=no, toolbar=no, scrollbars=no,status=no,resizeable=no,width=" + width + ",height=" + height;	
		aWin = window.open("","",s);
		aWin.document.open("text/html");
		aWin.document.writeln("<html><head><title>Vereinigte Papierwarenfabriken GmbH</title></head>");
		aWin.document.writeln("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
		aWin.document.writeln("<a href='javascript:window.close();' border='0'><img src='"+url+"' width='"+width+"' height='"+height+"' align='center' border='0'></a>");
		aWin.document.writeln("</body></html>");
		aWin.document.close();
		aWin.focus();	
	}


		
