function PopupWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
function bodyElement(){
	return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function getCookie(name){
	if (document.cookie.length>0){
  		start=document.cookie.indexOf(name + "=")
  		if (start!=-1){ 
    		start=start + name.length+1 
    		end=document.cookie.indexOf(";",start)
    		if (end==-1) {
    			end=document.cookie.length
    		}
    		return unescape(document.cookie.substring(start,end))
    	} 
  	}
	return ""
}
