
	/*
	
	Bücherstadt-Tourismus GmbH (c) 2010
	
	:::::::::::::::::::::::::::::::::::::::::::::::::::
	::
	::				 - Created by -
	::
	::			hikelCOM internet + druck
	::
	::	::: Internet, Druck & Design, Video & DVD :::
	::
	::				www.hikelcom.de
	::
	:::::::::::::::::::::::::::::::::::::::::::::::::::
	
	*/



/* ===== forms: hover effects ===== */

function ActNorm(ID,TYPE){

	if(TYPE == 'on'){
		if((ID.indexOf('senden') != -1) || (ID.indexOf('abbrechen') != -1)){
			document.getElementById(ID).className = 'input-base input-2-act';
		}else{
			document.getElementById(ID).className = 'input-base input-1-act';
		}
	}else{
		if((ID.indexOf('senden') != -1) || (ID.indexOf('abbrechen') != -1)){
			document.getElementById(ID).className = 'input-base input-2';
		}else{
			document.getElementById(ID).className = 'input-base';
		}
	}
}



/* ===== popup ===== */

function popupWindow(url){

	var strGeom = 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,left=100,top=100';
	window.open(url, "popupWindow", strGeom);
}



