// JavaScript Document

function highlightLogin() {
	//********
}

function isValidEmail(strg) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(strg)){
		return (true);
	}
}

function trim(str) {
   return str.replace(/^\s*|\s*$/g,"");
}

function Cache(url) {
	var MyImage = new Image();
	MyImage.src = url;
	return MyImage;
}

function showhide(id) {
	ob=document.getElementById(id);
	if ( ob.style.display=='' ) {
		ob.style.display='none';
	} else {
		ob.style.display='';
	}
}

function picChange(id, picurl) {
	document.getElementById(id).src=picurl;
}

















function sethome() {
	 doc.setHomePage('http://www.losdelafoto.com');
}
function JS_badcharr(p,searchchar) {
	rett=false;
	//searchchar="|!#$%&()/=?'\+*~{}[]^`:;<>";
	for (i=0; i <= searchchar.length-1; i++){
		charr=searchchar.charAt(i);
		if ( p.indexOf(charr) != -1 ) {
			rett=true;
		} 
	}
	return rett;
}

function JS_badchar_upload(p) {
	rett=false;
	searchchar=":*?<>|";
	for (i=0; i <= searchchar.length-1; i++) {
		if ( p.search((searchchar.charAt(i))) != -1 ) {
			rett=true;
		} 
	}
	return rett;
}

function tempslide(){
	window.open('temp_eventSlideshow.php?e=2&t=1&tt=ev','slide','status=yes, width=740, height=700, addressbar=yes, left=100, top=100')
}



