var serverPath, wWidth, wHeight,newWindow,xscreen,yscreen;

serverPath="../media/photopages/big/";
wWidth=300;
wHeight=300;
xscreen=200;
yscereen=200;

function showbigpict(pictname)
{
var theURLstring;
theURLstring=serverPath+pictname;


//theURLstring="<HTML><HEAD><META HTTP-EQUIV='content-type' CONTENT='text/html;charset=ISO-8859-1'><TITLE></TITLE></HEAD><BODY><FORM><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>"
//theURLstring=theURLstring+"<TR><TD><IMG SRC= "+serverPath+pictname+" BORDER=0></TD></TR><TR><TD ALIGN='center'>&nbsp;</TD></TR>"
//theURLstring=theURLstring+"<TR><TD ALIGN='center'><INPUT TYPE='button'' VALUE='Schliessen' NAME='sdafadf' ONCLICK='javascript:window.close()'></TD></TR>"
//theURLstring=theURLstring+"</TABLE></FORM></BODY></HTML>"

newWindow=window.open(theURLstring,"","dependent=1,width="+wWidth+", height="+wHeight+",scrollbars=1,resizable=1,screenX="+xscreen+",screenY="+yscreen);
// newWindow.focus();
// newWindow.blur();
}

function showalert(theText)
{
alert(theText);
}