function NeuesFenster()
{
 Navigation = window.open("no_2_2008.html","Navigation",
"height=500, width=800, fullscreen=no, top=100, left=100, location=no, locationbar=no, toolbar=no, scrollbars=no, menubar=no, status=no, resizable=no, directories=no");
 Navigation.focus();
}


function FensterNeu()
{
 Navigation = window.open("no_2_2008.html","Navigation","location=no, screenX=0,screenY=0, locationbar=no, toolbar=no, scrollbars=no, menubar=no, status=no, statusbar=no; resizable=no, directories=no, name=no");
 Navigation.resizeTo(800,500);
 Navigation.focus();
}


function FensterNeuOriginal()
{
var FensterName = "obenohne"
var FensterBreite = "800"
var FensterHoehe = "500"
var URL = "no_2_2008.html"
var Fenster = window.open(URL,FensterName,"fullscreen=1");
Fenster.resizeTo(FensterBreite,FensterHoehe);
Fenster.moveTo((screen.width-FensterBreite)/2,(screen.height-FensterHoehe)/2)
}

function ShowWindow(imgname)
{
F1 = open("leer.html","Fenster1","width=400,height=400,screenX=0,screenY=0");

F1.document.write("<html><title># # Kissen Kunst &copy; 2003 # #</title><body bgcolor='#f5f5f5' style='background-image:url(../images/hg.gif); background-repeat:repeat-y;'><table bordercolor='#006699' border='1px' cellpadding='11' cellspacing='0' width='100%' height='100%'><tr><td bgcolor='#808080' valign='middle' align='center'><a href='javascript:self.close()'><img src='"+imgname+"' border=0></a></td></tr></table></body></html>");

F1.focus();
}

