// creating the liQuidprint global namespace
if (typeof(LQP) === "undefined") {
	var LQP = {};
}

LQP.registerDevelopmentWebHit = function(type, guiDevelopmentID) {
	var callback = {
		success: function(o) {
		},
		failure: function(o) {
		}
	};
	var whURL = "/cfc/Development.cfc?method=recordWebHit&hitType=" + type + "&devID=" + guiDevelopmentID; 
	var cObj = YAHOO.util.Connect.asyncRequest("GET",whURL,callback);
}

LQP.registerPropertyWebHit = function(type, guiPropertySummaryID) {
	var callback = {
		success: function(o) {
		},
		failure: function(o) {
		}
	};
	var whURL = "/cfc/Property.cfc?method=recordWebHit&hitType=" + type + "&propID=" + guiPropertySummaryID; 
	var cObj = YAHOO.util.Connect.asyncRequest("GET",whURL,callback);
}