function getcreatives(fieldname) {
/**	if (parseInt(document.creativeform.AID.value)==document.creativeform.AID.value) **/
		document.getElementById('creativedisplay').src="creative-list.asp?fieldname="+fieldname+"&aid="+document.creativeform.AID.value;
/*	else
		alert('There was an error reading your Affiliate ID number. Please try again.');
*/
}



function formcheck(objForm, arrRequired) {
	for (x=0; x<arrRequired.length; x++)
		if (objForm.elements[arrRequired[x]].value == "") {
			alert("Please fill in all required fields");
			return false;
			}
			
	return true;

}

/* valid email */
function isEmail(string) {
    if (string.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1)
        return true;
    else
        return false;
}
/* End valid email */


