//Funktion ist nur für die NON-AJAX-Version
function dropdownCountry(pid,country_id,list_mode){
	location='index.php?id='+pid+'&no_cache=1&tx_mjportfolio_pi1[country_id]='+country_id+'&tx_mjportfolio_pi1[list_mode]='+list_mode+'';
}

function dropdownIndustry(pid,industry_id,list_mode){
	//location='index.php?id='+pid+'&country_id='+country_id+'&list_mode='+list_mode+'';
	location='index.php?id='+pid+'&no_cache=1&tx_mjportfolio_pi1[industry_id]='+industry_id+'&tx_mjportfolio_pi1[list_mode]='+list_mode+'';
}


function openPopup(image_path,breite,hoehe){
	var titel = "test-title";
	var image_path;
	var breite;
	var hoehe; 
	
	var fenster = window.open('','neu','width='+breite+',height='+hoehe+'');
	if (fenster!=null) {
		fenster.document.open();
		fenster.document.write("<body leftmargin=\"0\" topmargin=\"5\" marginwidth=\"0\" marginheight=\"0\"><html>");
		fenster.document.write("<a href=\"javascript:window.close()\"><img src=\""+image_path+"\" border=\"0\" alt=\"Fenster schliessen\">");
		fenster.document.write("</body></html>");
		fenster.document.close();
	}
}