function openpopup(popurl){
	var winpops=window.open(popurl,"","width=920,height=600,status,scrollbars,resizable,fullscreen");
}

	var originalrow_color, originalitem_color;
	
	function highlightrow(obj){
		originalrow_color = obj.style.backgroundColor;
		obj.style.backgroundColor = "#CCCCCC"; 
	}
	
	function unHighlightrow(obj){
			obj.style.backgroundColor = originalrow_color;
	}
	
	function changecursor(obj){
			obj.style.cursor = "pointer";
	}
	
	
	function confirm_delete(){
		if (confirm("You have selected to delete data, are you sure?")==true)
			return true;
		else
			return false;
	}	