function open_win(img,w,h){
   text_link= "width="+w+",height="+h+",scrollbars=yes,toolbar=no,menubar=no,status=no,location=no,top=0,left=0,resizable=yes"
   window.open(img,'img',text_link);
}

function validatesub() {
	if (document.form2.sName.value == '') {
		alert('Inserire un valore nel campo "Nome".');
		document.form2.sName.focus();
		return false;
	}

	  if (document.form2.sEmail.value == "")
	  {
		alert('Inserire un valore nel campo "Indirizzo E-mail".');
		document.form2.sEmail.focus();
		return (false);
	  }else{
	  var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
		if (!filter.test(document.form2.sEmail.value)){
			alert("Inserire un Indirizzo E-mail valido!")
			document.form2.sEmail.focus();
			return false;
		}
	
	  }
	  return true;
}
function openWin(img){
//alert(img);
	
//	var url_string='galleries/viewgalleryimg.asp?img='+ img + '';
	var url_string='http://www.paintyourlife.com/images/' + img;
	var win_width=750;
	var win_height=660;	
	var win_left = 0;
	var win_up = 0;
	window_parameters = 'width=' + win_width + ',height=' + win_height + ',left=' + win_left + ',top=' + win_up + ',scrollbars=1,resizable=0';
	//window_parameters = 'width=' + win_width + ',height=' + win_height + ',top=' + win_up + ',scrollbars=0,resizable=0';
	Win = window.open(url_string, "mywin", window_parameters);
	Win.window.focus();
}

