var attachEventHandlerFunction = function()
{
	this.pThisClass = this;
	this.width = 450;
	this.height = 225;
	this.x = 450;
	this.y = 225;
}

attachEventHandlerFunction.prototype.popup =  function(inputobj, linkname, element, eventName)
{  
	this.popupWindow = window.open("attach_event_handler_popup.php?inputObj=" + inputobj +"&element=" + element + "&eventName=" + eventName + "& about:blank","","width="+this.width+",height="+this.height+",screenX="+this.x+",left="+this.x+",screenY="+this.y+",top="+this.y+"");
}