// JavaScript Document

/********************************************
*open popup windows
*args: page, title,height,width
********************************************/

var objImage = new Image();

// JavaScript Document

/********************************************
*open popup windows
*args: page, title,height,width
********************************************/

var objImage = new Image();
function showPopUp(strImagePath,strURL) {
  var im = new Image();
	im.onload = function() { 
		window.open(strURL+"?"+strImagePath+"","popup","status=0,location=0,menubar=0,width="+im.width+",height="+im.height+"");
	}
	im.src = strImagePath;
}

