// coded by turtles 2007
//
// http://www.turtle-media.com/
//
// all rights reserved
//
var root
root = 'http://www.turtle-media.com/clients/aikon/'
//
////////////////////////////////////////////////////////////////////
// get  and set cookie script
function getC(c_name){ 
if (document.cookie.length>0){c_start=document.cookie.indexOf(c_name + "=")
if (c_start!=-1){ c_start=c_start + c_name.length+1; c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) {c_end=document.cookie.length}; return unescape(document.cookie.substring(c_start,c_end))}} return ""}
// setPermCookie script
function setC(c_name, c_value){document.cookie =  c_name + '=' + c_value + '; expires=Thu, 2 Aug 2040 20:47:11 UTC; path=/'}
////////////////////////////////////////////////////////////////////
//showhide
function show(divid){document.getElementById(divid).style.display = "block";}
function showinline(divid){document.getElementById(divid).style.display = "inline"}
function hide(divid){document.getElementById(divid).style.display = "none"}
////////////////////////////////////////////////////////////////////
function redirect(url){	document.location = url}
function conf(url){if(confirm("Are you sure?")){redirect(url)}}
////////////////////////////////////////////////////////////////////
