function OpenWindow(cSite, cSiteName, iWidth, iHeight, iLeft, iTop, cSet) {
	cVars = "width="+iWidth+", ";
	cVars+= "height="+iHeight+", ";
	cVars+= "left="+iLeft+", ";
	cVars+= "top="+iTop+", ";
	cVars+= "location=no, ";
	cVars+= "menubar=no, ";
	cVars+= "scrollbars=no, ";
	cVars+= "resizable=no ,";
	cVars+= "status=no, ";
	cVars+= "dependent=yes, ";
	cVars+= "toolbar=no ";
	//alert(cVars);
	wWindow = window.open(cSite,cSiteName,cVars);
}

function openChat() {
	fchat = window.open('http://chat.die13.info/','die13chat','width=800,height=600,left=10,top=10,location=no,menubar=no,scrollbars=no,resizable=no,status=no,toolbar=no');
	fchat.focus();
}

function NewComment(iRep, iPic, iReport) {
	if (iReport)
		f2 = OpenWindow('comment.php?Report='+iRep+'&Pic='+iPic, 'New_Comment', 423, 340, 200, 200);
	else
		f2 = OpenWindow('comment.php?Report='+iRep+'&Pic='+iPic, 'New_Comment', 400, 200, 200, 200);
}


function CheckInput(out) {
	if (out) {
	  document.getElementById("StatusDiv").style.display = "none";
	  return;
	}
	
	cText = "";
	if (!(document.getElementById("NewCommentName").value))
		cText = "Bitte einen Namen eingeben!\n\r";
	if (!(document.getElementById("NewCommentText").value))
		cText += "Bitte einen Text eingeben!\n\r";
	if (cText) {
		document.getElementById("StatusDiv").style.display = "";
		document.getElementById("StatusDiv").style.filter = "Alpha(Opacity=90);";
		document.getElementById("StatusDiv").innerText = cText;
		//document.getElementById("StatusDiv").style.left = "90px";
		//document.getElementById("StatusDiv").style.top = "50px";
	}
}

function CloseEdit(reload) {
	if (!reload)
 		window.opener.location.reload();
	window.close();
 	window.opener.location.focus();
}
