function printDoc(url) 
{
	day = new Date();
	id = day.getTime();
	eval("print" + id + " = window.open( url, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=680,height=510');");
}

function checkContactForm()
{
	var f = document.forms['yhteydenotto'];
	
	var error = "";
	
	if( f.nimi.value == '' ) error += ( error.length > 0 ? "," : "" ) + " nimi puuttuu";
	if( f.puhelin.value == '' && f.email.value == '' ) error += ( error.length > 0 ? ",<br />" : "" ) + " puhelinnumero tai sähköpostiosoite puuttuu";
	
	if( error.length > 0 ) 
	{
		document.getElementById('error').innerHTML = error;
		return false;
	}
	else
	{
		document.getElementById('error').innerHTML = '&nbsp;';
		return true;
	}
}
