
var plg_popup_jujus_register = new function(){
	
//	this.__id = 0;

	this.visible = false;

	this.show = function(){

		if( this.visible ){
			return;
		}
		
		this.visible = true;

		var popup = $('.JS_JujusReg.jQ_tpl:first').clone();
		
		plg_popup.show( popup.removeClass('jQ_tpl') );
		
//		$(".blockMsg").css({ border:'0px', left:'450px', top: '280px' });
//		$('.popup .jQ_close').click( function() { plg_popup_jujus_register.hide(); return false; } );

	}
	
	this.hide = function(){
		plg_popup.hide();
		this.visible = false;
//		this.__id = 0;
//		this.contentType = this.TYPE_COMMENT;
	}
	
	
}

