
/* **********************************************************************************
 * 	L I C E N S E
 * **********************************************************************************
 *
 *  DrNo Web Content Management System
 *	Copyright (C) 2006  Mario Morschner
 *	
 * 	Original author and distributor:
 *	Mario Morschner
 *	CATFISH SOFTWARE DEVELOPMENT
 *	leertaste.com
 *	Graz - Austria
 *	
 *	office@leertaste.com
 *	http://www.leertaste.com
 *	http://catfish.leertaste.com
 *
 * 	Originally distributed version: 2.0
 *
 * --------------------------------------------------------------------------------------------
 *
 * **********************************************************************************/

var value;
var style = "Normaler_Text";

if(document.all && !document.getElementById) {
	document.getElementById = function(id) {
		 return document.all[id];
	}
}


function init(){
	setStyle();
	prepareForPrint();
	//document.getElementById('style_selector').style.visibility='visible';
}

function getPlatform(){
	window.location.href="index.php?platform="+navigator.platform;
}
	
function prepareForPrint(){
	if(document.all && navigator.appVersion.substring(22,23)==4) {
		self.focus();
	 	var OLECMDID_PRINT = 6;
	 	var OLECMDEXECOPT_DONTPROMPTUSER = 2;
	 	var OLECMDEXECOPT_PROMPTUSER = 1;
	 	var WebBrowser = '<object id="WebBrowser1" width="0" height="0" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>';
	 	document.body.insertAdjacentHTML('beforeEnd',WebBrowser);
	 	WebBrowser1.ExecWB(OLECMDID_PRINT,OLECMDEXECOPT_DONTPROMPTUSER);
	 	WebBrowser1.outerHTML = '';
	}
}

function checkMailForm(){
	if(document.mailform.from.value.length==0 
		|| document.mailform.subject.value.length==0
		|| document.mailform.body.value.length==0
		|| document.mailform.email.value.length==0
		){ 
		alert("Bitte füllen Sie alle Felder aus!");
		return false;
	}
}

function printVersion(node){
	pWin = window.open("print.php?node="+node,"printversion","height=500,width=650,menubar=yes,toolbar=yes,scrollbars=yes");
	pWin.focus();
}

/* ----- styleswitcher.js ----- */
function setActiveStyleSheet(title,reset){
	var i,a,main;
	
	for(i=0;(a=document.getElementsByTagName("link")[i]);i++){
		if(a.getAttribute("rel").indexOf("style")!=-1&&a.getAttribute("title")){
			a.disabled=true;
			if(a.getAttribute("title")==title){
				a.disabled=false
			}
		}
	}
	if(reset==1){
		createCookie("wstyle",title,365)
	}
}

function setStyle(){
	var style=readCookie("wstyle");
	if(style!=null){
		setActiveStyleSheet(style,0)
	}
}

/* ----- cookie_functions.js ----- */
function createCookie(name,value,days){
	if(days){
		var date=new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires="; expires="+date.toGMTString()} else{expires=""}
	document.cookie=name+"="+escape(value)+expires+"; path=/;"
}

function readCookie(name){
	var nameEQ=name+"=";
	var ca=document.cookie.split(';');
	for(var i=0;i<ca.length;i++){
		var c=ca[i];
		while(c.charAt(0)==' '){
			c=c.substring(1,c.length)
		}
		if(c.indexOf(nameEQ)==0){
			return unescape(c.substring(nameEQ.length,c.length))
		}
	}
	return null
}
	

