///////////////////////////////////////////////////////////////////
///																///
///	tk.esterni, this is a gallery box application				///
///	developed by triknine										///
///																///
///////////////////////////////////////////////////////////////////

/// THIS IS A GALLERY MENU GLOBAL VARS
function thisisaform(id) {
	this.formObject = document.getElementById(id);
	this.sender = null;
	this.isActive = function() {
		if (this.formObject.isActive==true) return true;
		return false;
	}
	this.send = function() {
		if (this.isActive()) this.formObject.submit();
		else window.alert("your mouse is blocked, are you man?")
	}
	this.init = function(sender) {
		this.sender = document.getElementById(sender);
		var me = this;
		this.sender.onclick = function() {
			me.send();
		}
	}
}