function clearInput(formName, inputName) {
	eval("document."+formName+"."+inputName).value = '';
}
function view_image(path, width, height, id) {
	//window.confirm(path);
	//window.location = "admin/popup/view_image.php?"+path;
	pop = popup("units/catalog/view_image.php?file="+path+"&id="+id, "popup", width, height, false, false, 50, 150);
}
function popupbyname(url){
	xPos = window.screenLeft+10;
	yPos = window.screenTop+20;
	win = window.open(siteURL + '/objects/editor/viewpopup.php?url='+url, 'filepopup', "width=400,height=230,left="+xPos+",top="+yPos+",scrollbars=no,resizable=no,toolbars=no");
}
function toggleDiv(id){
	obj = document.getElementById(id);
	tmp = obj.style.display;
	if (tmp == 'none') obj.style.display='block';
	else obj.style.display='none';
}
function getid(id){
	return document.getElementById(id);
}
function popupeditor(inputname){
	xPos = window.screenLeft+10;
	yPos = window.screenTop+20;
	win = window.open('/miniCMS/objects/editor/tinymce_external.php?var='+inputname, 'filepopup', "width=700,height=400,left="+xPos+",top="+yPos+",scrollbars=no,resizable=yes,toolbars=no");	
}