<!--


function isValidEmail(strEmail) {
 validRegExp = /^([A-Za-z0-9_\-]+)([\.\-_][A-Za-z0-9]+)*\@([a-z])([a-z0-9]+)*([\.\-][a-z0-9]+)*\.([a-z]{2,4})$/;
 if (strEmail.search(validRegExp) == -1) 
 {
  alert('Adres e-mail jest niepoprawny!');
  return false;
 } 
 return true; 
}

function checkValues() {
if ((document.getElementById("name").value == '') || 
	(document.getElementById("phone").value == '') ||
	(document.getElementById("email").value == '') ||
	(document.getElementById("comments").value == '')) {
	alert('Wprowadź wszystkie dane.');
	return false;
}
else 
	return true;
}


nowe = null;
function okno(src, w, h) { 
if(window.screen) {
   aw=screen.availWidth;
   ah=screen.availHeight;
 } else {
   aw=640;
   ah=450;
 }
 if(nowe==null || nowe.closed) {
   ;
 } else {
   nowe.window.close();
 }
 ustawienia=
    "left=" + (aw-w)/2 + ","
   +"top=" + (20+ah-h)/2 + ","
   +"screenX=" + (aw-w)/2 + ","
   +"screenY=" + (20+ah-h)/2 + ","
   +"width=" + w + ","
   +"height=" + h + ","
   +"innerWidth=" + w + ","
   +"innerHeight=" + h + ","
   +"toolbar=no,"
   +"location=no,"
   +"directories=no,"
   +"status=no,"
   +"menubar=no,"
   +"scrollbars=no,"
   +"resizable=no"
 nowe = window.open('','obrazek',ustawienia);
 nowe.document.open();
 nowe.document.clear();
 nowe.document.write(
    "<html><head>\n"
   +"<title>AdiSound - Galeria</title>\n"
   +"<style><!--\n"
   +"body{background-repeat:no-repeat}\n"
   +"--></style>\n"
   +"</head>\n"
   +"<body background=" + src + "></body>\n"
   +"</html>"
 );
 nowe.document.close();
 nowe.focus();
}

//-->
