// r3
function radpop(opn) {
	pop=window.open("/radact3Htdocs/output.php?radPopupContentId="+opn,"RadWindow","width=100,height=100,toolbar=no,status=no,scrollbars=no,menubar=no,location=no,titlebar=no,resizable=yes,directories=no");
	pop.focus();
}

// print
function openPrintWin(theUrl) {
	printpop = window.open(theUrl,"","width=760,height=600,scrollbars=yes");
	printpop.focus();
}

// popup
function openPopupWin(theUrl,w,h) {
	pop = window.open(theUrl,"","width="+w+",height="+h+",scrollbars=yes");
	pop.focus();
}

// askmebluu special
function openxmas() {
	fenster = window.open("http://mpolo.de/r/modules/mpoloCommunity/xmas2009/MainMopXmas2009Registration.html","xmas","width=770,height=520,toolbar=no,status=no,scrollbars=no,menubar=no,location=no,titlebar=no,resizable=no,directories=no");
}

function shopSearch(lang){
	
	if(document.getElementById("searchstring").value != ''){
		searchUrl = "http://www.marc-o-polo-shop.com/index_"+lang+".html?search="+document.getElementById("searchstring").value;
		//alert("hello asdf "+searchUrl);
		location = searchUrl;
	}
}

function shopEnterSearch(event, lang){
	if(document.getElementById("searchstring").value != ''){
		searchUrl = "http://www.marc-o-polo-shop.com/index_"+lang+".html?search="+document.getElementById("searchstring").value;
		if (document.layers) {
			if (event.which == "13") {
				//alert("hello taste");
				location = searchUrl;
			} 
		} else {
			if (event.keyCode == "13") {
				//alert("hellp window");
				location = searchUrl;
			}
		}
	}
}

function openSearchHelp(){
	searchhelp = window.open("http://www.marc-o-polo-shop.com/Shop09/HtmlMeta/de/popup_Hilfe.html","","width=450,height=330");
}