var gAutoPrint = true; // Tells whether to automatically call the print function

function printSpecial(){
	if (document.getElementById != null){
		var html = '<HTML>\n<HEAD>\n';

		if (document.getElementsByTagName != null){
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0) html += headTags[0].innerHTML;
		}

		html += '\n</HE>\n<BODY>\n';

		var printReadyElem = document.getElementById("printReady");

		if (printReadyElem != null){
			html += printReadyElem.innerHTML;
		}
		else{
			alert("Could not find the printReady function");
			return;
		}

		html += '\n</BO>\n</HT>';

		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint) printWin.print();
	}
	else {
		alert("The print ready feature is only available if you are using an browser. Please update your browswer.");
	}
}

function setPhoneAreaCode(data) {
    var value = data.value;
	var phone_number = document.getElementById("idezet_keres[telefon]");
	
	phone_number.value = value;
}

function bookmarksite(title,url){
	if (window.sidebar) // firefox
		window.sidebar.addPanel(title, url, "");
	else if(window.opera && window.print){ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',url);
		elem.setAttribute('title',title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all)// ie
		window.external.AddFavorite(url, title);
}

function NewWindow(mypage, myname, w, h, noscroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',noresizable'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
