winCount=0
function windowO(URL1) {
	links=(screen.width-650)/2
	oben=(screen.height-450)/2
		if(winCount>0) {
			if(F1.closed==false)
				F1.close()
			}
		winCount=1
		F1=open("","","width=700,height=500, resizable=yes,top="+oben+",screenY="+oben+",left="+links+",screenX="+links)
		F1.document.open();
		F1.document.write('<HTML><HEAD><TITLE>') ;
		F1.document.write('</TITLE></HEAD><FRAMESET ROWS="0,*" COLS="*">') ;
		F1.document.write('<FRAME SRC="') ;
		F1.document.write('../site/blank.html') ;
		if(URL1.indexOf('.pdf') != -1)
			F1.document.write('" scrolling="no"> <FRAME scrolling="no" SRC="') ;
		else
			F1.document.write('" scrolling="yes"> <FRAME scrolling="yes" SRC="') ;
		F1.document.write(URL1) ;
		F1.document.write('" NAME="pdf" MARGINWIDTH=20 MARGINHEIGHT=20 RESIZE FRAMEBORDER=No>') ;
		F1.document.write('</FRAMESET> </HTML>') ;
		F1.document.close();
	}
	
function windowI(URL1) {
	F1=open("","","width=700,height=500,resizable=yes, scrollbars=yes")
	F1.document.open();
	F1.document.write('<title>Vereinigung der Westernreiter in Bayern e.V - Fotogallerie</title><body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">')
	F1.document.write('<img src="'+URL1+'"></body>')
	F1.document.close();
	F1.moveTo(140,140)
	}

function moviWindow(URL) {
	links=(screen.width-650)/2
	oben=(screen.height-450)/2
		if(winCount>0) {
			if(F1.closed==false)
				F1.close()
			}
		winCount=1
		F1=open("","","width=320,height=230, resizable=false,top="+oben+",screenY="+oben+",left="+links+",screenX="+links)
		F1.document.open();
		F1.document.write('<HTML><HEAD><TITLE>') ;
		F1.document.write('</TITLE></HEAD><BODY bgcolor="#000000">') ;
		
		F1.document.write('<embed src="') ;
		F1.document.write(URL) ;
		F1.document.write('" autostart="false">') ;

		F1.document.write('</BODY> </HTML>') ;
		F1.document.close();
	}

