/*
	parallaxis JS v1.0
	Copyright (c) 2009 parallaxis – digitales Marketing
	
	Project:	www.schuereichhofen.de
	Author: 	parallaxis – digitales Marketing
	Contact: 	Hohe Str. 23
				44139 Dortmund

	Phone:		+49 231 14 15 25
	Web:		www.parallaxis.de
	Mail:		info@parallaxis.de
*/


//	Zoom-Funktion mit Parametern
function fZoom(imageName,imageWidth,imageHeight,bildunterschrift) 
{ 
newWindow = window.open("","newWindow","width="+(imageWidth)+",height="+(imageHeight)+",scrollbars=no");
//newWindow=window.open("","newWindow","width="+(20+imageWidth)+",height="+(1+fensterheigth)+", scrollbars=no");
newWindow.document.open();
newWindow.document.write('<html><head><title>parallaxis - digitale medien</title>');
newWindow.document.write('</head>');
//newWindow.document.write('<body bgcolor="white" leftmargin="0" topmargin="10" marginheight="10" marginwidth="0" background="../images/streifen_hg.gif" onBlur="self.close()">');
newWindow.document.write('<body bgcolor="white" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onBlur="self.close()">')
newWindow.document.write('<p align="center"><a href="javascript:self.close()"><img src=\"'+imageName+'\"  align="absmiddle" border=0></a>');
if (fZoom.arguments.length>3)
  {
  newWindow.document.write('<font face="Arial, Helvetica, sans-serif" size="2" color="#1D5A2D"><br><br><b>'+ bildunterschrift+'</b></font></p></body></html>')
  }
newWindow.document.close(); 
newWindow.focus(); 
}


//	Zoom-Funktion ohne Parametern
function fZoom22(imageName,scroll,bildunterschrift) { 
if (fZoom2.arguments.length>2){
  if (scroll == 'yes'){
    newWindow = window.open("","newWindow","width="+599+",height="+500+",scrollbars=yes");
  }else{
    newWindow = window.open("","newWindow","width="+599+",height="+500+",scrollbars=no,resizable=yes");
  }
}else{
  if (scroll == 'no'){
    newWindow = window.open("","newWindow","width="+599+",height="+500+",scrollbars=no resizable=no");
  }else{
    newWindow = window.open("","newWindow","width="+599+",height="+500+",scrollbars=yes,resizable=no");
  }
}

newWindow.document.open();
newWindow.document.writeln('<html><head><title>Schuereichhofen Kreativhaus</title>');
newWindow.document.writeln('<link rel=stylesheet type="text/css" href="parallaxis.css"></head>');
newWindow.document.writeln('<body topmargin="0" id="popup" marginheight="0" leftmargin="0" marginleft="0" onload="window.resizeTo(document.bild.width,document.bild.height+30);" onBlur="self.close()">');
newWindow.document.writeln('<p align="center"><a href="javascript:self.close()"><img src="'+imageName+'" name="bild" align="absmiddle" border=0></a>'); 
if (fZoom22.arguments.length>2){
newWindow.document.writeln('<b>'+ bildunterschrift+'</b>')}
newWindow.document.write('</p></body></html>');
newWindow.document.close();
newWindow.focus(); 

if(navigator.appName == "Microsoft Internet Explorer") {
var bildhoehe = newWindow.document.bild.height;
var bildbreite = newWindow.document.bild.width;
{if (bildhoehe>700) { newWindow.resizeTo(bildbreite+27,700);}
 else {
  if (fZoom2.arguments.length>2) { newWindow.resizeTo(bildbreite,bildhoehe+50); }
  else { newWindow.resizeTo(bildbreite,bildhoehe+29) }}}}
}