<!--BEGIN
function chURL(id){
	document.location.href = "?id="+id;
}

/*PRELOADING IMAGES*/

loadImages  = new Array("../IMG/MENU/1g.jpg","../IMG/MENU/2g.jpg","../IMG/MENU/3g.jpg","../IMG/MENU/4g.jpg","../IMG/MENU/5g.jpg","../IMG/MENU/6g.jpg","../IMG/MENU/7g.jpg","../IMG/MENU/8g.jpg","../IMG/MENU/9g.jpg");

function preload()
{
	pics = new Array();
	
	for(i=0;i<loadImages.length;i++)
	{
		pics[i] = new Image();
		pics[i].src = loadImages[i];
	}
}

/*CHECK FORM*/

function checkF()
{
	for(i=0;i<checkF.arguments.length;i++)
	{
		if(!checkF.arguments[i].value)
		{
			alert("Bitte fuellen Sie alle Pflichtfelder aus!");
			checkF.arguments[i].focus();
			return false;
		}
	}
	return true;
}

function imgPop(src,width,height){
	if(width >= (screen.availWidth - 50)) width = screen.availWidth - 50; else width +=28;
	if(height >= (screen.availHeight - 50)) width = screen.availHeight - 50; else height +=50;
	imgWind = window.open("INC/gallery/imgPop.php?"+src,"Details","width="+width+",height="+height+",left=10,top=10,toolbar=0,statusbar=0,scrollbars=0,menu=0");
	imgWind.resizeTo(width,height);
	imgWind.moveTo(screen.availWidth/2-width/2,screen.availHeight/2-height/2);
	imgWind.focus();
}
//-->

