function showIssue(path) 
{
	if(path=="")
	{
		return false;
	}
	else
	{
		var w = 660; 
		var h = 610;
		var l = (window.screen.width-w)/2;
		var t = (window.screen.height-h)/2; 
		SearchWin = window.open(path,null,"height="+h+",width="+w+",status=no,toolbar=no,menubar=no,scrollbars=yes,location=no,left="+l+",top="+t);
	}
}

function checkPoll()
{
	var	index = 0;
	if(document.pollForm.PollAnswerID != null)
	{
		for(index=0 ; index<document.pollForm.PollAnswerID.length ; index++)
		{
			if(document.pollForm.PollAnswerID[index].checked == true)
			{
				document.pollForm.submit();
				break;
			}
		}
	}
}

function checkEmail()
{
	if ((document.mailForm.emailAddress.value == null)||(document.mailForm.emailAddress.value == ''))
	{
		alert("Please input a valid email address!");
		document.mailForm.emailAddress.focus();
		document.mailForm.emailAddress.select();
	}
	else
	{
		if(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.mailForm.emailAddress.value))
		{
			document.mailForm.submit();
		}
		else
		{
			alert("Please input a valid email address!");
			document.mailForm.emailAddress.focus();
			document.mailForm.emailAddress.select();
		}
	}
}

function validateEmail()
{
	if(document.layers||document.getElementById||document.all)
	{
		return checkEmail()
	}
	else
	{
		document.mailForm.submit();
	}
}

function clearText(textInput)
{
	if(document.all[textInput].value.indexOf("Email") != -1)
		document.all[textInput].value = '';
}
function ContactUs(QS)
{
    var w = 793;
    var h = 517;
    var LocationString = "http://www.888.com/new888/lang/en/texts/contactusform/contactus.htm?" + QS;
    var l = 1; //(window.screen.width-w)/2;
    var t = 1; //(window.screen.height-h)/2;
    window.open(LocationString,"contactUsWnd","status=no,toolbar=no,menubar=no,location=no,left=" + l + ",top=" + t + ",width=" + w + ",height=" + h)
}
function ContactUsVIP(QS)
{
    var w = 793;
    var h = 517;
    var LocationString = "http://www.888.com/new888/lang/en/texts/contactusform/contactus.htm?status=1&" + QS;
    var l = 1; //(window.screen.width-w)/2;
    var t = 1; //(window.screen.height-h)/2;
    window.open(LocationString,"contactUsWnd","status=no,toolbar=no,menubar=no,location=no,left=" + l + ",top=" + t + ",width=" + w + ",height=" + h)
}