// ----------------------------------------------------------
//  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=no,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("","img",s);
		aWin.document.open("text/html");
		aWin.document.writeln("<html><head><title>VELUX Deutschland 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();	
	}


function showPic2 (title,url,url2,url3,width,height,desc) 
	{			
		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("","img",s);
		aWin.document.open("text/html");
		aWin.document.writeln("<html><head><title>VELUX Deutschland GmbH</title>");
		aWin.document.writeln('<link rel="stylesheet" type="text/css" media="all" href="typo.css" />');
		aWin.document.writeln("</head>");
		aWin.document.writeln("<body leftmargin='10' topmargin='10' marginwidth='10' marginheight='10'>");
		aWin.document.writeln("<p><strong>" + title + "</strong></p>");
		aWin.document.writeln("<a href='javascript:window.close();' border='0'><img src='"+url+"' style='float:left;' border='0'><img src='"+url2+"' style='float:left;' border='0' hspace='10'><img src='"+url3+"'  border='0'></a>");
		aWin.document.writeln(desc);
		aWin.document.writeln("<p><a href='javascript:window.close();' border='0'><< Fenster schlie&szlig;en</a></p>");
		aWin.document.writeln("</body></html>");
		aWin.document.close();
		aWin.focus();	
	}
	
function showPic3 (url,width,height) 
	{			
		var s = "dependent=no, directories=no, location=no, menubar=no, personalbar=no, toolbar=no, scrollbars=no,status=no,resizeable=no,width=" + width + ",height=" + height;	
		aWin = window.open("","img",s);
		aWin.document.open("text/html");
		aWin.document.writeln("<html><head><title>VELUX Deutschland GmbH</title></head>");
		aWin.document.writeln("<body leftmargin='10' topmargin='10' marginwidth='10' marginheight='10'>");
		aWin.document.writeln("<a href='javascript:window.close();' border='0'><img src='"+url+"' align='center' border='0'></a>");
		aWin.document.writeln("</body></html>");
		aWin.document.close();
		aWin.focus();	
	}

		
