/*****************************************************************************************************/
/*                                                                                                   */
/*                                     'ECARD APPLET' CLASS                                          */          
/*                                                                                                   */
/*****************************************************************************************************/

function APPLET(){
	var JSObject = this;
	this.type = "applet"; 
	
	this.DOMDoc; //document object from thickbox window
	
	this.close_link;
	
	this.tb_identifier;    //thickbox identifier
	
	/*****************************************************************************************************/
	/*                                                                                                   */
	/*                                      FUNCTION INIT                                                */          
	/*                                                                                                   */
	/*****************************************************************************************************/
	this.init = function(){
		/*****************************************************************************************************/
		/*                                                                                                   */
		/*                                          INFORMATION                                              */          
		/*                                                                                                   */
		/*****************************************************************************************************/
		//add thickbox identifier
		JSInterface.setThickboxID(this.tb_identifier);
		JSInterface.checkThickBoxHeight = null;
		
		this.close_link = $('a[id="close_link"]',this.DOMDoc).get(0);
		
		
		/*****************************************************************************************************/
		/*                                                                                                   */
		/*                                      LINK 'CLOSE' ACTIONS                                         */          
		/*                                                                                                   */
		/*****************************************************************************************************/
		$(this.close_link).bind("click", function(){
													JSObject.closeThickbox();
												});
	}
	
	
	this.closeThickbox = function(){
		
		this.DOMDoc.body.innerHTML = "";
		JSInterface.setThickboxID(JSObject.tb_identifier);
		JSInterface.removeThickboxID();
		JSInterface.closeThickbox();
		JSInterface.closeThickbox();
		
	}
	
	
}