// ONLY USE lowercase FOR ALL OPTIONS
// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON



var close_button 	= "yes"		// CLOSE BUTTON ON/OFF
var text_width		= "0"		// WIDTH OF THE TEXT TABLE
var view_width 		= 890		// GALLERY TN POPUP WIDTH was 790
var view_height 	= 600		// GALLERY TN POPUP HEIGHT
var scrollbarS 		= "1"		// TURN ON POPUP SCROLLBARS "1" FOR ON "0" FOR OFF
var hide_status		= "no"		// HIDE LINK STATUS
var status_text 	= ""	// TEXT IN THE STATUS BAR






function popUp(URL,TITLE,TEXT) {

var look='toolbar=0,border=0,buttons=0,scrollbars=' + scrollbarS + ',location=0,statusbar=0,menubar=0,resizable=0,width='+view_width+',height='+view_height+','
popwin=window.open("","",look,"TITLE","TEXT")
popwin.document.open()
popwin.document.write('<html><head><title>'+TITLE+'</title>')
popwin.document.write('<body topmargin="0" leftmargin="10">')
popwin.document.write('<link rel=StyleSheet href="includes/coolstyle.css" type="text/css" media="screen">')
popwin.document.write('<TABLE  border="0" style="font-size:12" class="text" cellpadding="0" cellspacing="0" border="0" width="'+text_width+ '" align="center" valign="middle"><tr><td align="left" valign="middle"  colspan=""  width="600" height="84">  ')
popwin.document.write('<span style="font-family:arial;font-size:22;Font-weight:bold;color:#E3007B;line-height:22px;">'+TITLE+'</span></td><td><img src="images/logo.gif"></td></tr>  ')
popwin.document.write('<tr><td colspan="2"><br>  ')
popwin.document.write('    <table border="0" cellpadding="1" cellspacing="0" width="'+(view_width-40)+'">  ')

popwin.document.write('    <tr><td colspan="2"><b><span  style="font-size:16; text-decoration: underline;">HOUSEHOLD EXPO 2010, Moscow:  14 September – 17 September 2010</span></b><br><br></td></tr>  ')
popwin.document.write('    <tr><td valign="top"><b>HALL: </b>9/ <b>BOOTH: </b>2<br><br></td><td></td></tr>  ')
popwin.document.write('</td></tr> ')


popwin.document.write('    <tr><td colspan="2"><b><span  style="font-size:16; text-decoration: underline;">AMBIENTE, Frankfort on the Main: 11 February - 15 February 2011</span></b><br><br></td></tr>  ')
popwin.document.write('    <tr><td valign="top"><b>HALL:</b> 5.0/ <b>BOOTH: </b>D59<br><br></td><td></td></tr>  ')
popwin.document.write('</td></tr> ')



popwin.document.write('</table> ')
popwin.document.write('<center><form style="margin-bottom: 0px"><input type="button" value="Close"  onClick=\'self.close()\' class="button">&nbsp;</form></center><br>  ')
popwin.document.write('</body></html>')
popwin.document.close()
}
//  End -->