// chat-postion.js
function openW(v){
window.open(v,'','width=600,height=500,left=350,top=200,status=no,scrollbars=no,menubar=no,toolbar=no,resizable=no,location=no');
}

function closeOrOpen(){
	if(document.getElementById("harryFloat_Content").style.display!="none"){
		document.getElementById("harryFloat_Content").style.display="none"
		document.getElementById("harryFloat_CloseOrOpenBtn").innerHTML="+Open Online Support  "
	}else{
		document.getElementById("harryFloat_Content").style.display=""
		document.getElementById("harryFloat_CloseOrOpenBtn").innerHTML="-Close Online Support  "
		}
}

//tab.js
$.tabs = function(selector, start) {
	$(selector).each(function(i, element) {
		$($(element).attr('tab')).css('display', 'none');
		
		$(element).mouseover(function() {
			$(selector).each(function(i, element) {
				$(element).removeClass('selected');
				
				$($(element).attr('tab')).css('display', 'none');
			});
			
			$(this).addClass('selected');
			
			$($(this).attr('tab')).css('display', 'block');
		});
	});
	
	if (!start) {
		start = $(selector + ':first').attr('tab');
	}

	$(selector + '[tab=\'' + start + '\']').trigger('mouseover');
};






