// JavaScript Document

	function insertDemotext(){
		document.form_suche.suche.value = 'Suchen und Finden';
		document.form_suche.suche.className  = 'demotext';
		document.form_apothekensuche.plz.value = 'PLZ eingeben';
		document.form_apothekensuche.plz.className  = 'demotext';
		return false;
	}
	function demotextWeg(which){
		if (which=='suche') {
			if ( document.form_suche.suche.value == 'Suchen und Finden' ) {
				document.form_suche.suche.className  = '';
				document.form_suche.suche.value = '';
			}
			document.form_suche.suche.focus();
		} else if (which=='plz') {
			if ( document.form_apothekensuche.plz.value == 'PLZ eingeben' ) {
				document.form_apothekensuche.plz.className  = '';
				document.form_apothekensuche.plz.value = '';
			}
			document.form_apothekensuche.plz.focus();
		}
		return false;
	}
	function demotextHin(which){
		if (which=='suche') {
			if ( document.form_suche.suche.value == '' ) {
				document.form_suche.suche.className = 'demotext';
				document.form_suche.suche.value = 'Suchen und Finden';
			}
		} else if (which=='plz') {
			if ( document.form_apothekensuche.plz.value == '' ) {
				document.form_apothekensuche.plz.className = 'demotext';
				document.form_apothekensuche.plz.value = 'PLZ eingeben';
			}
		}
		return false;
	}
	function resizeWidth(which) {
		if ( which == 'big' ) {
			$('#produktfinder').css('width','600px');
		} else {
			$('#produktfinder').css('width','105px');
		}
	}
	function gotoProdukt(which) {
		if ( which == 'Calcium-Sandoz' ) {
			window.location = "http://www.calcium-sandoz.de/produkte/calcium-sandoz/";
		} else 
		if ( which == 'Calcium-Sandoz-D-Osteo' ) {
			window.location = "http://www.calcium-sandoz.de/produkte/calcium-sandoz-d-osteo/";
		} else 
		if ( which == 'Zink-Sandoz' ) {
			window.location = "http://www.calcium-sandoz.de/produkte/zink-sandoz/";
		} else 
		if ( which == 'Folsäure-Sandoz' ) {
			window.location = "http://www.calcium-sandoz.de/produkte/folsaeure-sandoz/";
		} else 
		if ( which == 'Calcium-Sandoz' ) {
			window.location = "http://www.calcium-sandoz.de/produkte/calcium-sandoz/";
		} else 
		if ( which == 'Magnesium-Sandoz' ) {
			window.location = "http://www.calcium-sandoz.de/produkte/magnesium-sandoz/";
		} else 
		if ( which == 'Eisen-Sandoz' ) {
			window.location = "http://www.calcium-sandoz.de/produkte/eisen-sandoz/";
		} else 
		if ( which == 'Calcium-Sandoz-Sun' ) {
			window.location = "http://www.calcium-sandoz.de/produkte/calcium-sandoz-sun/";
		}
	}

