//17.06.2008, 26.10.2008, 09.08.2010

//==============================================================================================
//----------------------------------------------------------------------------------------------
//	Jsc_Zoom(jsP, jsW, jsH)
//	Jsc_Toggle(jsObject, jsPath, jsFile)
//==============================================================================================



//09.08.2010
//==============================================================================================
function JsG_ToggleId(GjsObj, GjsPic)
{
	GjsPicObj = new Image();
	GjsPicObj.src = GjsPic;
	document.getElementById(GjsObj).src = GjsPicObj.src;
}

//09.08.2010
//==============================================================================================
function JsG_Wlh(GjsTemplate, GjsLink)
{
	window.location.href = GjsTemplate+"?gP1="+GjsLink;
}
//==============================================================================================

//26.10.2008
//==============================================================================================
function Jsc_Zoom(jsP, jsW, jsH)
{
	jsW += 6;
	jsH += 55;
	var url_zoom = "tool/pu_zoom.php?gP="+jsP+"&gW="+jsW+"&gH="+jsH+"";
	jsParam = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=50,top=50,width="+jsW+",height="+jsH+"";
	var wind_zoom = window.open(url_zoom, "zoom", jsParam);
	wind_zoom.location = url_zoom;
	wind_zoom.focus();
}

//17.06.2008
//==============================================================================================
function Jsc_Toggle(jsObject, jsPath, jsFile)
{
	PicObj = new Image(); PicObj.src = jsPath+jsFile;
	window.document.images[jsObject.name].src = PicObj.src;
}
