/**
 * This array is used to remember mark status of rows in browse mode
 */
var marked_row = new Array;


/**
 * Sets/unsets the pointer and marker in browse mode
 *
 * @param   object    the table row
 * @param   integer  the row number
 * @param   string    the action calling this script (over, out or click)
 * @param   string    the default background color
 * @param   string    the color to use for mouseover
 * @param   string    the color to use for marking a row
 *
 * @return  boolean  whether pointer is set or not
 */

function echeck(str) {

		var at="@"
		var dot="."
		var lat=str.indexOf(at)
		var lstr=str.length
		var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1){
		   alert("Invalid E-mail ID")
		   return false
		}

		if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
		   alert("Invalid E-mail ID")
		   return false
		}

		if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
		    alert("Invalid E-mail ID")
		    return false
		}

		 if (str.indexOf(at,(lat+1))!=-1){
		    alert("Invalid E-mail ID")
		    return false
		 }

		 if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
		    alert("Invalid E-mail ID")
		    return false
		 }

		 if (str.indexOf(dot,(lat+2))==-1){
		    alert("Invalid E-mail ID")
		    return false
		 }

		 if (str.indexOf(" ")!=-1){
		    alert("Invalid E-mail ID")
		    return false
		 }

 		 return true
	}


function setPointer(theRow, theRowNum, theAction, theDefaultColor, thePointerColor, theMarkColor)
{
    var theCells = null;

    // 1. Pointer and mark feature are disabled or the browser can't get the
    //    row -> exits
    if ((thePointerColor == '' && theMarkColor == '')
        || typeof(theRow.style) == 'undefined') {
        return false;
    }

    // 2. Gets the current row and exits if the browser can't get it
    if (typeof(document.getElementsByTagName) != 'undefined') {
        theCells = theRow.getElementsByTagName('td');
    }
    else if (typeof(theRow.cells) != 'undefined') {
        theCells = theRow.cells;
    }
    else {
        return false;
    }

    // 3. Gets the current color...
    var rowCellsCnt  = theCells.length;
    var domDetect    = null;
    var currentColor = null;
    var newColor     = null;
    // 3.1 ... with DOM compatible browsers except Opera that does not return
    //         valid values with "getAttribute"
    if (typeof(window.opera) == 'undefined'
        && typeof(theCells[0].getAttribute) != 'undefined') {
        currentColor = theCells[0].getAttribute('bgcolor');
        domDetect    = true;
    }
    // 3.2 ... with other browsers
    else {
        currentColor = theCells[0].style.backgroundColor;
        domDetect    = false;
    } // end 3

    // 3.3 ... Opera changes colors set via HTML to rgb(r,g,b) format so fix it
    if (currentColor.indexOf("rgb") >= 0)
    {
        var rgbStr = currentColor.slice(currentColor.indexOf('(') + 1,
                                     currentColor.indexOf(')'));
        var rgbValues = rgbStr.split(",");
        currentColor = "#";
        var hexChars = "0123456789ABCDEF";
        for (var i = 0; i < 3; i++)
        {
            var v = rgbValues[i].valueOf();
            currentColor += hexChars.charAt(v/16) + hexChars.charAt(v%16);
        }
    }

    // 4. Defines the new color
    // 4.1 Current color is the default one
    if (currentColor == ''
        || currentColor.toLowerCase() == theDefaultColor.toLowerCase()) {
        if (theAction == 'over' && thePointerColor != '') {
            newColor              = thePointerColor;
        }
        else if (theAction == 'click' && theMarkColor != '') {
            newColor              = theMarkColor;
            marked_row[theRowNum] = true;
            // Garvin: deactivated onclick marking of the checkbox because it's also executed
            // when an action (like edit/delete) on a single item is performed. Then the checkbox
            // would get deactived, even though we need it activated. Maybe there is a way
            // to detect if the row was clicked, and not an item therein...
            // document.getElementById('id_rows_to_delete' + theRowNum).checked = true;
        }
    }
    // 4.1.2 Current color is the pointer one
    else if (currentColor.toLowerCase() == thePointerColor.toLowerCase()
             && (typeof(marked_row[theRowNum]) == 'undefined' || !marked_row[theRowNum])) {
        if (theAction == 'out') {
            newColor              = theDefaultColor;
        }
        else if (theAction == 'click' && theMarkColor != '') {
            newColor              = theMarkColor;
            marked_row[theRowNum] = true;
            // document.getElementById('id_rows_to_delete' + theRowNum).checked = true;
        }
    }
    // 4.1.3 Current color is the marker one
    else if (currentColor.toLowerCase() == theMarkColor.toLowerCase()) {
        if (theAction == 'click') {
            newColor              = (thePointerColor != '')
                                  ? thePointerColor
                                  : theDefaultColor;
            marked_row[theRowNum] = (typeof(marked_row[theRowNum]) == 'undefined' || !marked_row[theRowNum])
                                  ? true
                                  : null;
            // document.getElementById('id_rows_to_delete' + theRowNum).checked = false;
        }
    } // end 4

    // 5. Sets the new color...
    if (newColor) {
        var c = null;
        // 5.1 ... with DOM compatible browsers except Opera
        if (domDetect) {
            for (c = 0; c < rowCellsCnt; c++) {
                theCells[c].setAttribute('bgcolor', newColor, 0);
            } // end for
        }
        // 5.2 ... with other browsers
        else {
            for (c = 0; c < rowCellsCnt; c++) {
                theCells[c].style.backgroundColor = newColor;
            }
        }
    } // end 5

    return true;
} // end of the 'setPointer()' function

function validatePwd(obj)
{
	if(obj.old_password.value == "" )
	{
		alert("Please enter the old password!");
		obj.old_password.focus();
		return false;
	}
	if(obj.old_password.value.length < 6)
	{
		alert("Password length should be atleast 6 characters!");
		obj.old_password.focus();
		return false;
	}
	if(obj.new_password.value == "" )
	{
		alert("Please enter the new password!");
		obj.new_password.focus();
		return false;
	}
	if(obj.new_password.value.length < 6 )
	{
		alert("Password length should be minimum 6 characters!");
		obj.new_password.focus();
		return false;
	}
	if(obj.retype_password.value == "" )
	{
		alert("Please enter the confirm password!");
		obj.retype_password.focus();
		return false;
	}
	if(obj.retype_password.value != obj.new_password.value )
	{
		alert("Wrong confirm password!");
		obj.retype_password.value = "";
		obj.retype_password.focus();
		return false;
	}

//document.frm.submit();
return true;
}

function validateUser(obj)
{
	if(obj.username.value == "" )
	{
		alert("Please enter the username!");
		obj.username.focus();
		return false;
	}

return true;
}

function popup(url,width,height,left,top,name){
		var props = "toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,titlebar=no,menubar=no,left="+left+",top="+top+",width="+width+",height="+height;
		w = window.open(url, name, props);
		if (w) {
		w.focus();
		}
}


function ValidateAlphaNumeric(myfield,e)
{
    var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;
	if ((keycode==13) || (keycode==32) || ((keycode>43) && (keycode<58) ) || ((keycode>=60) && (keycode<=90) )  || (keycode==8) || (keycode==95) || ((keycode>=97) && (keycode<=122) )) { return true; }
	else return false;
}


function ValidateNumeric(myfield,e)
{
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;
	if ((keycode==32) || (keycode==46) || ((keycode>43) && (keycode<58) )  || (keycode==8)) { return true; }
	else return false;
}

function ValidateFullNumeric(myfield,e)
{
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;
	if (((keycode>46) && (keycode<58) )  || (keycode==8)) { return true; }
	else return false;
}

function ValidateAlpha(myfield,e)
{
    var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;
	if ((keycode==32) || ((keycode>43) && (keycode<48)) || ((keycode>=65) && (keycode<=90) )  || (keycode==8) || ((keycode>=97) && (keycode<=122) )) { return true; }
	else return false;
}

/*Function below is for category jump menu*/
function changePage(id){
	location.href="innerpage.php?id="+id;
}

function chkRegisterForm()
{
	if(document.frmregister.User_Name.value == "" )
	{
		alert("Please enter your username!");
		document.frmregister.User_Name.focus();
		return false;
	}
	if(document.frmregister.Email_Address.value == "" )
	{
		alert("Please enter your email address!");
		document.frmregister.Email_Address.focus();
		return false;
	}
	if(!echeck(document.frmregister.Email_Address.value))
	{
		document.frmregister.Email_Address.focus();
		return false;
	}
	if(document.frmregister.Cnfm_Email_Address.value == "" )
	{
		alert("Please enter confirm email address!");
		document.frmregister.Cnfm_Email_Address.focus();
		return false;
	}
	if(!echeck(document.frmregister.Cnfm_Email_Address.value))
	{
		document.frmregister.Cnfm_Email_Address.focus();
		return false;
	}
	if(document.frmregister.Email_Address.value != document.frmregister.Cnfm_Email_Address.value )
	{
		alert("Wrong confirm email!");
		document.frmregister.Cnfm_Email_Address.focus();
		return false;
	}
	if(document.frmregister.Password.value == "" )
	{
		alert("Please enter your password!");
		document.frmregister.Password.focus();
		return false;
	}
	if(document.frmregister.Password.value.length < 6)
	{
		alert("Password length should be atleast 6 characters!");
		document.frmregister.Password.focus();
		return false;
	}
	if(document.frmregister.Confirm_Password.value == "" )
	{
		alert("Please enter your confirm password!");
		document.frmregister.Confirm_Password.focus();
		return false;
	}
	if(document.frmregister.Confirm_Password.value != document.frmregister.Password.value )
	{
		alert("Wrong confirm password!");
		document.frmregister.Confirm_Password.focus();
		return false;
	}
	if(document.frmregister.Hint_Question.value == "" )
	{
		alert("Please select hint question!");
		document.frmregister.Hint_Question.focus();
		return false;
	}
	if(document.frmregister.Answer.value == "" )
	{
		alert("Please enter answer!");
		document.frmregister.Answer.focus();
		return false;
	}
	if(document.frmregister.First_Name.value == "" )
	{
		alert("Please enter your firstname!");
		document.frmregister.First_Name.focus();
		return false;
	}
	if(document.frmregister.Last_Name.value == "" )
	{
		alert("Please enter your lastname!");
		document.frmregister.Last_Name.focus();
		return false;
	}
	if(document.frmregister.terms.checked==false){
		alert("Please accept the terms and conditions!");
		document.frmregister.terms.focus();
		return false;
	}
	return true;
}

function chkEditForm()
{
	if(document.frmregister.Email_Address.value == "" )
	{
		alert("Please enter your email address!");
		document.frmregister.Email_Address.focus();
		return false;
	}
	if(!echeck(document.frmregister.Email_Address.value))
	{
		document.frmregister.Email_Address.focus();
		return false;
	}
	if(document.frmregister.Hint_Question.value == "" )
	{
		alert("Please select hint question!");
		document.frmregister.Hint_Question.focus();
		return false;
	}
	if(document.frmregister.Answer.value == "" )
	{
		alert("Please enter answer!");
		document.frmregister.Answer.focus();
		return false;
	}
	if(document.frmregister.First_Name.value == "" )
	{
		alert("Please enter your firstname!");
		document.frmregister.First_Name.focus();
		return false;
	}
	if(document.frmregister.Last_Name.value == "" )
	{
		alert("Please enter your lastname!");
		document.frmregister.Last_Name.focus();
		return false;
	}
	return true;
}

function searchState(val)
{
	if(val != ''){
		document.forms.state_search.submit();
	}
}

function validateCosts()
{
	if(document.frm.mem_cost_1.value == "" )
	{
		alert("Please enter monthly price!");
		document.frm.mem_cost_1.focus();
		return false;
	}
	if(document.frm.mem_cost_2.value == "" )
	{
		alert("Please enter 3 monthly price!");
		document.frm.mem_cost_2.focus();
		return false;
	}
	if(document.frm.mem_cost_3.value == "" )
	{
		alert("Please enter 6 monthly price!");
		document.frm.mem_cost_3.focus();
		return false;
	}
	return true;
}

function validatePage()
{
	with(document.frm)
	{
		if(page_name.value==""){
		alert("Please enter the page name!");
		page_name.focus();
		return false;
		}
		if(content.value==""){
		alert("Please enter the page content!");
		content.focus();
		return false;
		}
	}
	return true;
}

function chkContact()
{
	if(document.frmContact.first_name.value == "" )
	{
		alert("Please enter your first name!");
		document.frmContact.first_name.focus();
		return false;
	}
	if(document.frmContact.last_name.value == "" )
	{
		alert("Please enter your last name!");
		document.frmContact.last_name.focus();
		return false;
	}
	if(document.frmContact.email.value == "" )
	{
		alert("Please enter your email!");
		document.frmContact.email.focus();
		return false;
	}
	if(!echeck(document.frmContact.email.value))
	{
		document.frmContact.email.focus();
		return false;
	}
	if(document.frmContact.comments.value == "" )
	{
		alert("Please enter your comments!");
		document.frmContact.comments.focus();
		return false;
	}
	return true;
}

function validateSupplierAdd(obj)
{
	if(obj.company_name.value == "" )
	{
		alert("Please enter the company name!");
		obj.company_name.focus();
		return false;
	}
	if(obj.email.value=="")
	{
		alert("Please enter email");
		obj.email.focus();
		return false;
	}
	if(!echeck(obj.email.value))
	{
		obj.email.focus();
		return false;
	}
	if(obj.address1.value.length < 6)
	{
		alert("Address 1 length should be atleast 6 characters!");
		obj.address1.focus();
		return false;
	}
	if(obj.phone.value=="")
	{
		alert("Please enter phone");
		obj.phone.focus();
		return false;
	}
	if(obj.city.value=="")
	{
		alert("Please enter city");
		obj.city.focus();
		return false;
	}
	if(obj.county.value=="")
	{
		alert("Please enter county");
		obj.county.focus();
		return false;
	}
	if(obj.postcode.value=="")
	{
		alert("Please enter postcode");
		obj.postcode.focus();
		return false;
	}
	if(obj.contact_person.value=="")
	{
		alert("Please enter contact person");
		obj.contact_person.focus();
		return false;
	}

	return true;
}

function validateCategoryAdd(obj)
{
	if(obj.title.value == "" )
	{
		alert("Please enter the title!");
		obj.title.focus();
		return false;
	}
	if(obj.descr.value=="")
	{
		alert("Please enter description");
		obj.descr.focus();
		return false;
	}

	return true;
}

function validateSubCategoryAdd(obj)
{
	if(obj.title.value == "" )
	{
		alert("Please enter the title!");
		obj.title.focus();
		return false;
	}
	if(obj.descr.value=="")
	{
		alert("Please enter description");
		obj.descr.focus();
		return false;
	}

	return true;
}

function validateSubSubCategoryAdd(obj)
{
	if(obj.title.value == "" )
	{
		alert("Please enter the title!");
		obj.title.focus();
		return false;
	}
	if(obj.descr.value=="")
	{
		alert("Please enter description");
		obj.descr.focus();
		return false;
	}

	return true;
}

function validateProductAdd(obj)
{
	if(obj.name.value == "" )
	{
		alert("Please enter the name!");
		obj.name.focus();
		return false;
	}
	if(obj.descr.value=="")
	{
		alert("Please enter description");
		obj.descr.focus();
		return false;
	}

	return true;
}

function validateMerchEdit(obj)
{
	if(obj.name.value == "" )
	{
		alert("Please enter the merchandiser name!");
		obj.name.focus();
		return false;
	}
	if(obj.cnfm_password.value.length > 1 && obj.cnfm_password.value.length < 6 )
	{
		alert("Password length should be minimum 6 characters!");
		obj.cnfm_password.focus();
		return false;
	}
	if(obj.cnfm_password.value != obj.password.value )
	{
		alert("Passwords do not match!");
		obj.cnfm_password.value = "";
		obj.cnfm_password.focus();
		return false;
	}
	return true;
}

function validateProductCart(obj)
{
	if(obj.prod_qty.value == "" )
	{
		alert("Please enter the quantity!");
		obj.prod_qty.focus();
		return false;
	}

	return true;
}
function validateOrderAdd(obj)
{
	if(obj.name.value == "" )
	{
		alert("Please enter name!");
		obj.name.focus();
		return false;
	}
	if(obj.street1.value == "" )
	{
		alert("Please enter street1 adress!");
		obj.street1.focus();
		return false;
	}
	//if(obj.street2.value == "" )
	//{
	//	alert("Please enter street2 address!");
	//	obj.street2.focus();
	//	return false;
	//}
	if(obj.city.value == "" )
	{
		alert("Please enter city!");
		obj.city.focus();
		return false;
	}
	if(obj.county.value == "" )
	{
		alert("Please enter county!");
		obj.county.focus();
		return false;
	}
	if(obj.postcode.value == "" )
	{
		alert("Please enter postcode!");
		obj.postcode.focus();
		return false;
	}
	if(obj.phone1.value == "" )
	{
		alert("Please enter Tel Daytime!");
		obj.phone1.focus();
		return false;
	}
	//if(obj.phone2.value == "" )
	//{
	//	alert("Please enter Tel Evening!");
	//	obj.phone2.focus();
	//	return false;
	//}
	if(obj.email.value == "" )
	{
		alert("Please enter your email address!");
		obj.email.focus();
		return false;
	}
	if(!echeck(obj.email.value))
	{
		obj.email.focus();
		return false;
	}
	if(obj.cnfm_email.value == "" )
	{
		alert("Please enter your cnfm email address!");
		obj.cnfm_email.focus();
		return false;
	}
	if(!echeck(obj.cnfm_email.value))
	{
		obj.cnfm_email.focus();
		return false;
	}
	if(obj.cnfm_email.value != obj.email.value )
	{
		alert("Email do not match!");
		obj.cnfm_email.value = "";
		obj.cnfm_email.focus();
		return false;
	}
	return true;
}