﻿var version = 1.0;
var v = 0;

function openFullScreenChat(urlname, windowname)
{
	if (document.all)
	{
		var w = screen.width - window.screenLeft - 10;
		var h = screen.height - window.screenTop;
		var win = window.open(urlname, windowname, "resizable=1, width="+w+",height="+h+",status=1");
		win.moveTo(0,0);
	}
	else
	{
		window.open(urlname, windowname, "resizable=1, fullscreen=1");
	}
}

function openNormalClient()
{
	var win = window.open("http://www.igxe.com/livehelp/livehelpclient.cfm", "_123livehelp_normalclientdemo", "resizable=1, width=495,height=450,status=1");
}

function openCostomClient(win_width, win_height)
{
	var win_width = document.customForm.win_width.value;
	var win_height = document.customForm.win_height.value;
	
	if (win_width < 495)
	{
		alert("width can't be less than 495");
		return;
	}
	if (win_height < 376)
	{
		alert("height can't be less than 376");
		return;	
	}
	
	var win = window.open("http://www.igxe.com/livehelp/livehelpclient.cfm", "_123livehelp_customclientdemo", "resizable=1, width=" + win_width + ",height=" + win_height + ",status=1");
}

function displayStatusImg(onlineImg, offlineImg)
{
	var s=1;
	var htmlcode = (s == 1) ? onlineImg : offlineImg;
	if(htmlcode!=offlineImg){ 
		htmlcode = "<img src='" + htmlcode + "' border='0' usemap='#Map2'/>";
		htmlcode = htmlcode + "<map name='Map2'><area shape='rect' coords='3,2,160,81' href='http://www.igxe.com/livehelp/livehelpclient.cfm' target='_blank'/><area shape='rect' coords='3,88,162,111' href='http://www.igxe.com/News/faqlist.cfm' target='_blank'/><area shape='rect' coords='0,118,161,137' href='http://www.igxe.com/users/orderTracking.cfm' target='_blank'/></map>";
	}else{
			htmlcode="<img src='" + htmlcode + "' border='0'>";
	}
	document.write(htmlcode);
}

function checkSubmit(f){
	for(var i=0; i<f.ProductType.length; i++){
		if(f.ProductType[i].checked == true){
			return true;	
		}
	}
	alert("Please choose your inquiry type");
	return false;
}
