function validateProductAttributes(strAttribute1, strAttribute2, strQuerystring){
	var hshMessage = message();
	var strMessage = "";
	var strError = "";
	var isValid = true;
	
	if (strQuerystring == "ADD_CART") strMessage = hshMessage["MESSAGE_2"];
	if (strQuerystring == "ADD_WISH") strMessage = hshMessage["MESSAGE_3"];
	
	if (strAttribute1 && strAttribute2){
		if (document.frmProduct.FIELD_ID1.selectedIndex == 0) {
			strError += hshMessage["BULLET"]+" "+hshMessage["MESSAGE_1"]+" "+strAttribute1+" "+strMessage+"\n";
			isValid = false;
		}
		if (document.frmProduct.FIELD_ID2.selectedIndex == 0) {
			strError += hshMessage["BULLET"]+" "+hshMessage["MESSAGE_1"]+" "+strAttribute2+" "+strMessage+"\n";
			isValid = false;
		}
	} else if (strAttribute1){
		if (document.frmProduct.FIELD_ID1.selectedIndex == 0) {
			strError += hshMessage["BULLET"]+" "+hshMessage["MESSAGE_1"]+" "+strAttribute1+" "+strMessage+"\n";
			isValid = false;
		}
	} else if (strAttribute2){
		if (document.frmProduct.FIELD_ID2.selectedIndex == 0) {
			strError += hshMessage["BULLET"]+" "+hshMessage["MESSAGE_1"]+" "+strAttribute2+" "+strMessage+"\n";
			isValid = false;
		}
	}
	
	if (!isValid){
		alert(strError);
		return false;
	}
	
	return true;
}

