var getURL = "";
if (window.location.search != "")
{
  getURL = window.location.search;
}

function hoch(){
window.parent.scrollTo(0, 0);
}

function deselect(id) {
	var templateList = document.getElementById(id)
	for (var i = 0; i < templateList.options.length; i++) {
		templateList.options[i].selected = false
	}
}

function displayText(obj,textoff,texton,more) {
var el = document.getElementById(obj);

if ( el.style.display != 'none' ) {
el.style.display = 'none';
document.getElementById(more).innerHTML = textoff;
}
else {
el.style.display = 'block';
document.getElementById(more).innerHTML = texton;
}
}

var isIE7 = false;



