// JavaScript Document


function checkForm(myForm)
{
var bincomplette = false;
var sstrings = '';
if (myForm == 'frmContact') {
	if (document.getElementById(myForm).fldFrom.value=='') {
		bincomplette = true;
		sstrings = sstrings+'Παρακαλώ συμπληρώστε: Από\n';
		}
	if (document.getElementById(myForm).fldEmail.value=='') {
		bincomplette = true;
		sstrings = sstrings+'Παρακαλώ συμπληρώστε: Email\n';
		}
	if (document.getElementById(myForm).fldSubject.value == '') {
		bincomplette = true;
		sstrings = sstrings+'Παρακαλώ συμπληρώστε: Θέμα.\n';
		}
	if (document.getElementById(myForm).fldText.value=='') {
		bincomplette = true;
		sstrings = sstrings+'Παρακαλώ συμπληρώστε: Μήνυμα\n';
		}

	if (bincomplette == true) {
		alert(sstrings);
	} else {
		document.getElementById(myForm).submit();	
	}
} 
} 

// Popup tip window processing
function displayPopup(winname, url, height, width) 
{
  properties = "toolbar=0,location=0,scrollbars=1,height="+height;
  properties = properties+",width="+ width;
  properties = properties+",status=1";
  popupHandle = open(url, winname, properties);
}


function statusDialog(status) 
{
if (status == 'Inserted') {
	alert("Το μήνυμα σας στάλθηκε με επιτυχία. Ευχαριστούμε.");
}
}

function emailThis(theUrl) {

window.document.location="mailto:?subject=Παλμός%20FM%20-%20Νέα&body=Διαβάστε%20σήμερα%20απo%20τον%20Παλμό:%20"+escape(theUrl)+".%20Ακούστε%20Παλμό%2099,5%20και%20106,5%20FM."
return void(0); 
}