var newwindow;	
var s = 0;
function livehelp(){
	
	if(s==1){ 
		var height_123livehelp = 525;
		var width_123livehelp = 675;
		var x = Math.round((screen.availWidth - width_123livehelp) / 2);
		var y = Math.round((screen.availHeight - height_123livehelp) / 2);
		var openURL=escape(window.document.location.href);
		//var url = "http://host.123livehelp.com/client.php?init_group=infodial&init_preColor=LightSteelBlue&init_url="+openURL;
		var url = "http://www.ozfreeonline.com/livehelp.php?url="+openURL;
		newwindow=window.open(url,'name','width='+ width_123livehelp +',height=' + height_123livehelp + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes,top='+ x +',left=' + y +',screenX='+ x +',screenY=' + y);
			 if (window.focus) 
			 {
				 newwindow.focus();
			 }
	}
	else{
		window.location.href="mailto:info@ozfreeonline.com";	
	}
}

function livehelp2(online, offline){
	var offlineImg 	=(online=='')?'offline-support02.gif':online;
	var onlineImg 	=(offline=='')?'chat01.gif':offline;
	var img_loc		='http://www.ozfreeonline.com/images/';
	
	if(s == 1){
		code = '<a onclick="livehelp()" style="cursor:pointer;"><img src="'+img_loc+onlineImg+'" border="0"></a>';		
	}
	else{
		code = '<a href="mailto:info@ozfreeonline.com" style="cursor:pointer;"><img src="'+img_loc+offlineImg+'" border="0"></a>';
	}
	
	if (online == 'morningShift'){
		code = '<a href="mailto:info@ozfreeonline.com" style="cursor:pointer;"><img src="http://www.ozfreeonline.com/images/offline-support02.gif" border="0"></a>';		
	}	
	
	document.write(code);	
}

