var imgBasePath;
/*
var parentPath=top.location.href;
parentPath = parentPath.substring(0,parentPath.lastIndexOf("/"));
*/
var parentPath="http://www.fast-zi-nation.de";

function frameCheck()
{
	if (frames && !(parent.frames.headframe))
	{
		var locPath = escape(top.location.href);
		top.location.href=parentPath+"/index_reloader.html?ca="+locPath;
	};
};

function setImgBasePath(p_Path)
{
	frameCheck();
	imgBasePath=p_Path;
};


function showPic(picURL)
{
	var pic = new Image();
	var innerHTML;
	var xPos=0;
	var yPos=0;
	
	if (document.layers)
	{
		xPos=144;
		yPos=84;
	};
	
	picURL = imgBasePath+picURL;
	
	pic.src = picURL;
	
	// innerHTML+="";
	innerHTML="<HTML>";
	innerHTML+="<head><title>FAST-ZI-NATION image window</title></head>";
	innerHTML+="<body bgcolor='white' leftmargin='0' topmargin='0' style='margin-left:0px; margin-top:-8px;'>";
	innerHTML+="<img src='"+parentPath+"/images/imgwin/imgwin_header.jpg'>";
	innerHTML+="<table border='0' align='center' width='800' height='535'>";
	innerHTML+="<tr valign='middle'><td align='center'>";
	innerHTML+="<img src='"+picURL+"' name='currPic'>";
	innerHTML+="</td></tr>";
	innerHTML+="</table>";
	innerHTML+="</body>";
	innerHTML+="</HTML>";

	F1 = window.open("","Fenster1","resizeable=yes,width=800,height=600,screenX="+xPos+",screenY="+yPos);
	F1.focus();
	F1.document.open();
	F1.document.write(innerHTML);
	F1.document.close();
}
