﻿/*****************************************************// Seiten-Initialisierung, die für alle Seiten gleich ist******************************************************/function entryField(){	this.value = null;	this.color = null;}var navigNewEntry = new entryField();$(document).ready(function(){		navigNewEntry.value = $('#ttwSuche').val();	navigNewEntry.color = $('#ttwSuche').css('color');		$('#ttwSuche').bind('focus', function(){		if($(this).val() == navigNewEntry.value){			$(this).css('color', '#777777');			$(this).val('');		}	});		$('#ttwSuche').bind('blur', function(){		if($(this).val() == ''){			$(this).val(navigNewEntry.value);			$(this).css('color', navigNewEntry.color);		}	});	});/*****************************************************//Ajax-Response parsen/*****************************************************/function server_response(data){		var retVal = data.split("^^^^");		return retVal;}function print_div(the_div, printTitle){ 		var a = window.open('','','width=300,height=300');	a.document.open("text/html");	a.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head>");	a.document.write("<link href=\"../../../css/style.css\" type=\"text/css\" rel=\"stylesheet\" media=\"print\" />");	a.document.write("</head><body><div id=\"list_output\" style=\"text-align: left;\"><p class=\"titel\">" + printTitle + "</p></div>");	a.document.write($('#' + the_div).html());	a.document.write("</body>");	a.document.close();	a.print();	a.close();}
