function viewImage(full){
	//var newfull = full.replace('/Common','Common');
	//var img = new Image();
	//img.src=newfull;	
	//var url = "/showImage.aspx?path=" + newfull;
	var img = new Image();
	img.src=full;	
	var url = "/viewImage.aspx?path=" + full;
	var features = "alwaysRaised=1, toolbar=1, scrollbars=1, resizable=1, height=" + img.height + ", width=" + img.width;
	var win = window.open(url, "Resource", features);
}
function viewAttatchment(doc){
	var features = "alwaysRaised=1, toolbar=0, scrollbars=0, resizable=1";
	window.open(doc, "Resource", features);
}


