function checkSelectElement (cValue, arrArguments) {
	formName = arrArguments[2];
	elmName = arrArguments[3];
	if (document.forms[formName].elements[elmName].value == "-1") {
		return false;
	} else {
		return true;
	}
}
function showFullImage(e, oAnchor){
	var oDiv = document.createElement('DIV');
	var oImage = new Image();
	oImage.src=oAnchor.href.toString();
	oImage.onerror = function(){
		document.getElementById('popitmenu').firstChild.innerHTML = '<p style="margin-top:30px;" class="gs-arial11">No Image Uploaded</p>';
	}
	oDiv.style.textAlign="center"
	oDiv.style.backgroundColor="#ffffff"
	oDiv.style.height = "500px"
	oDiv.style.width = "800px"
	oDiv.style.overflow ="scroll";
	oDiv.appendChild(oImage)
	showmenu(e, oDiv , '' , '', repositionDivFeedBack);
}
function repositionDivFeedBack(oMenu){
		var nPosX = oMenu.style.left.replace(/px/i,'') * 1
		oMenu.style.left = (nPosX - 7) +'px';
}
