function OpenPopup(p_htmlfile, p_width, p_height)
{
	var width  = "width=" + p_width;
	var height = "height=" + p_height; 
	
  	var popup = window.open(p_htmlfile,"myWin","status=no,toolbar=yes,scrollbars=yes," + width + "," + height);
  	//popup.event.cancelBubble = true;
  	//popup.event.returnValue = false;
}

function OpenPopup2(p_htmlfile, p_width, p_height)
{
	var width  = "width=" + p_width;
	var height = "height=" + p_height; 
	
  	var popup = window.open(p_htmlfile,"myWin","status=no,toolbar=yes,scrollbars=yes," + width + "," + height);
  	//popup.event.cancelBubble = true;
  	//popup.event.returnValue = false;
}

