function printText(){ 
new_window = window.open('print.asp','mywindow','width=575,resizable=yes,left=0,top=100,screenX=0,screenY=100,scrollbars=yes'); 
document.print_send.action = "print.asp"; 
document.print_send.target = "mywindow"; 
document.print_send.submit(); 
} 
function sendMail(){ 
window.open('send.asp','mywindow','width=525,resizable=yes,left=0,top=100,screenX=0,screenY=100,scrollbars=yes'); 
document.print_send.action = "send.asp"; 
document.print_send.target = "mywindow"; 
document.print_send.submit(); 
} 

function ponuda(newsId,languageId,categoryId,flashId){ 
nId=newsId; 
lId=languageId; 
fId=flashId; 
cId=categoryId; 
openPage="ponuda.asp?NewsID="+nId+"&LanguageID="+lId+"&FlashID="+fId+"&CategoryID="+cId; 
window.open(openPage,'mywindow','width=520,height=520, resizable=yes,left=0,top=100,screenX=0,screenY=100,scrollbars=yes'); 
} 

//provjera forme 
function validator_HR() { 
var greske=""; 
//provjera maila 
if (document.salji_mail.vasmail.value=="" || document.salji_mail.vasmail.value.indexOf("@")==-1) { 
greske=greske+"Niste pravilno upisali vašu e-mail adresu.<br />"; 
} 
if (document.salji_mail.mailprimatelja.value=="" || document.salji_mail.mailprimatelja.value.indexOf("@")==-1) { 
greske=greske+"Niste pravilno upisali primateljevu e-mail adresu.<br />"; 
} 
if(greske!=""){ 
document.getElementById("message").innerHTML=greske; 
//alert(greske); 
return false; 
} 
else { 
return true; 
} 
}
