var popup = null;



function ShowPopup(url,param){
	if(popup != null){
		popup.close();
	}
	popup  = window.open(url,"_blank",param);
	popup.moveTo(100, 100);
	popup.document.bgColor = "#FFFFFF";
	popup.focus();
}
function OpenCalculator(type){
	var url = 'http://www.be-quiet.net/be-quiet.net/index.php?StoryID=45&websiteLang='+Doc.language;
	if(type == 'expert'){
		url = 'http://www.be-quiet.net/be-quiet.net/index.php?StoryID=44&websiteLang='+Doc.language;
	}
	ShowPopup(url,'width=1030,height=750,dependent=yes,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function OpenTipSelector(){
	ShowPopup('http://www.be-quiet.net/be-quiet.net/index.php?StoryID=33&websiteLang='+Doc.language,'width=645,height=500,dependent=no,resizable=no,location=no,status=no,toolbar=no,scrollbars=no');
}

function ComparePSU(ProductID){
	ShowPopup('index.php?StoryID=23&websiteLang='+Doc.language+'&ProductID='+ProductID,'width=1014,height=680,dependent=no,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function CompareFAN(ProductID){
	ShowPopup('index.php?StoryID=35&websiteLang='+Doc.language+'&ProductID='+ProductID,'width=1014,height=680,dependent=no,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function CompareCooler(ProductID){
	ShowPopup('index.php?StoryID=61&websiteLang='+Doc.language+'&ProductID='+ProductID,'width=1014,height=680,dependent=no,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function OpenPrint(ProductID){
	ShowPopup('index.php?StoryID=29&websiteLang='+Doc.language+'&ProductID='+ProductID,'width=1064,height=768,dependent=no,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function vergleichprint(url){
	ShowPopup(url,'width=1064,height=768,dependent=no,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function show360(verzeichnis){
	ShowPopup('http://www.be-quiet.net/be-quiet.net/templates/html/360/'+verzeichnis+'/index.html','width=420,height=320,dependent=no,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function OpenCompare(){
	ShowPopup('index.php?StoryID=65','width=1014,height=680,dependent=no,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function OpenLexicon(){
	ShowPopup('index.php?StoryID=39&websiteLang='+Doc.language,'width=1010,height=800,dependent=true,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function OpenCompare(){
	ShowPopup('index.php?StoryID=65','width=1014,height=680,dependent=no,resizable=no,location=no,status=no,toolbar=no,scrollbars=yes');
}
function SearchHandler(CountryCode, CompanyType, CompanyPostcode)
{
	$("#wtb_result").html("loading...");
		$.ajax
		(
			{
				url: "index.php",
				data: "StoryID=38&CountryCode="+CountryCode+"&CompanyType="+CompanyType+"&CompanyPostcode="+CompanyPostcode,
				dataType: "html",
				cache: false,
				success: function(html)
				{
					if(html == ""){
						$("#wtb_result").html("No Result");
					}
					else{
						$("#wtb_result").html(html);
					}
				}
			}
		);
}
 
	


