
function OpenNewWindow(Picture,Breit,Hoch)
{
	xsize = Breit+40; 
	ysize = Hoch+120; 
    
	ScreenWidth = screen.width;
	ScreenHeight = screen.height;

	xpos = (ScreenWidth/2)-(xsize/2);
	ypos = (ScreenHeight/2)-(ysize/2);

	NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");
	NewWindow.document.write ("<html><head><title>:: Border Collies of Green Borderline ::");
	NewWindow.document.write ("</title></head>");
	NewWindow.document.write("<body background='img/bildback1.gif' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onload='focus()' onBlur='close()'>");
	NewWindow.document.write ("<table align='center'><tr>");
	NewWindow.document.write ("<td align='center' valign='top'>");
	NewWindow.document.write ("<table border='1' bgcolor='#FFFFFF' cellpadding='0' cellspacing='1'><tr><td align='center'>");
	NewWindow.document.write ("<img src=");
	NewWindow.document.write (Picture);
	NewWindow.document.write (">");
	NewWindow.document.write ("</tr></table>");
	NewWindow.document.write ("</td></tr><tr>");
	NewWindow.document.write ("<td align='center' valign='bottom'>");
	NewWindow.document.write ("<br><center><form><input type='button' value='Fenster schliessen' style='font-family: Verdana; font-size: 11px;color:#555555;background-color:#FFFFFF;' onClick='self.close()'>");
	NewWindow.document.write ("</td></tr></table>");
	NewWindow.document.write ("</form></body></html>");
	NewWindow.document.close();
                     NewWindow.resizeTo(xsize,ysize); 
}


function auf(meineSeite,meinName,w,h,scroll)
{
	LeftPosition = 1;
	TopPosition = 1;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizeable';
	
	Fenster=window.open(meineSeite,meinName,settings)
}

window.defaultStatus = ":: B O R D E R   C O L L I E S   O F   G R E E N   B O R D E R L I N E ::";
