var isedit = false;
		
function iCMSunset(){
	isedit = false;	
}

function iCMSlink(indata,target){
	if(isedit == false){
		window.open(indata,target);
	}
}

function iCMSedit(indata,file,field,lang,type){
	isedit = true;

	var width = indata.offsetWidth;
	
	window.open("/libispy/icms/icmsedit.php?file=" + file + "&field=" + field + "&lang=" + lang + "&width=" + width + "&type=" + type, "myWindow", "status = 1, height = 430, width = 710, resizable = 0" );
	
	setTimeout ("iCMSunset()", 100 );
}




