var win=null;
								function NewWindow(mypage,myname,w,h,scroll,pos){
								if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;
								}
								if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;
								}
								else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
								settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
								win=window.open(mypage,myname,settings);
								}

								var content=new Array()

								content[0] =  'theaterzaal';
								content[1] =  'broadway foyer';
								content[2] =  'west end foyer';
								content[3] =  'bernstein foyer';
								content[4] =  'bacharach salon';
								content[5] =  'sondheim salon';
								content[6] =  'theaterrestaurant';
								content[7] =  'boardroom';
								content[8] =  'circusbar';
								content[9] =  'restaurant le cirque';

								function regenerate(){
								window.location.reload()
								}
								function regenerate2(){
								if (document.layers){
								appear()
								setTimeout("window.onresize=regenerate",450)
								}
								}

								function changetext(whichcontent){

								if (document.all||document.getElementById){
								cross_el=document.getElementById? document.getElementById("descriptions"):document.all.descriptions
								cross_el.innerHTML='<font face="Arial">'+whichcontent+'<font>'
								}
								else if (document.layers){
								document.d1.document.d2.document.write('<font face="Arial">'+whichcontent+'</font>')
								document.d1.document.d2.document.close()
								}

								}

								function appear(){
								document.d1.visibility='show'
								}

								window.onload=regenerate2