function popup(string, width, height) {
	
	popup = window.open('','', 'width='+width+',height='+height);
	popup.document.write(string);
	
}

function showAdvertisingInquiriesPopUp() {
	
	html  = "<html><style>*{font-family:arial; font-size:10pt;} a{color:#770D0D; text-decoration:none; font-weight:bold;}</style><body>";
	html += "<img src='/images/mediasquares.gif' /><br />";
	html += "<b>mediasquares NL</b><br />";     
	html += "Hogehilweg 15<br />"; 
	html += "1101 CB Amsterdam<br />"; 
	html += "Tel.: +31 - (0)20 - 311 3870 <br />";
	html += "Fax: +31 - (0)20 - 363 0916<br />";
 	html += "<br />";
	html += "email: <a href='mailto:info@mediasquares.nl'>info@mediasquares.nl</a><br />";
	html += "Web: <a href='http://www.mediasquares.nl'>www.mediasquares.nl</a><br />";
	html +="</body></html>";
	
	popup(html, 280, 200);
}