function checkData (a,b,c){
	mail=1;
	if (document.forms['formnew'].elements['EMAIL'].value!=""){
 	if (!isEmail(document.forms['formnew'].elements['EMAIL'].value)) {
  		document.forms['formnew'].elements['EMAIL'].focus()
  	mail=0
  	}
	} else {
		mail = 0
	}

	if (mail==0){
	return false;
	} else {
	return true;
	}
}

openClose =  function(name){
	$(name).className = ($(name).className == 'hidden')? 'visible': 'hidden';
	return false;
}

function pub_info(qs) { 
	var pp='pubinfo.parkru?p='+qs;
	popUpWin = window.open(pp,'SOURCE_INFORMATION','resizeable=no,scrollbars=yes,left=5,top=5,width=500,height=350');
	popUpWin.focus();
}

function resizeWin(namescript,newLoc, newWidth, newHeight) {
	if(newWidth == 0) newWidth = (window.screen.width -50)
	if(newHeight == 0) newHeight = (window.screen.height -50)
	newWin = open(namescript,newLoc,"scrollbars=no,resizable=yes,status=no,height=" + newHeight + ",width=" + newWidth + ",left=" + 		(screen.width-newWidth)/2 + ",top=0");
	newWin.focus()
}

