function printPage() {
	window.print();  
}

function addToFavorites(url,title,lang)
{
	//var url = "http://www.webart.com/";
	//var title = "WebArt Active Media";
	if (lang=='el') {
		var msg="Λυπούμαστε, αλλά ο browser σας δεν υποστηρίζει αυτή τη δυνατότητα.";
	} else if (lang=='en') {
		var msg="Sorry, your browser doesn't support this.";
	}
	
	if (window.sidebar) { // firefox
		window.sidebar.addPanel(title, url,"");
	}else if( document.all ) { //MSIE
		window.external.AddFavorite( url, title);
	}else if(window.opera && window.print) { // Opera
		return true; 
	}else {
		alert(msg);
	}
}

function win_open(w,h,loc){
	window.open("saf.php?width="+w+"&height="+h+"&location="+loc,"Cosmoroes","height="+h+",width="+w+",status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no,titlebar=no");
}