String.format = function(){
	if(arguments.length == 0)
		return null;

	var _string = arguments[0];
	
	for(var i = 1, n = arguments.length; i < n; i++)		
		_string = _string.replace(RegExp('\\{' + (i-1) + '\\}','gm'),arguments[i]);

	return _string;
};
// Array Remove - By John Resig (MIT Licensed)
Array.prototype.remove = function(from, to) {
  var rest = this.slice((to || from) + 1 || this.length);
  if(typeof from != "undefined") {
	this.length = from < 0 ? this.length + from : from;
  }
  return this.push.apply(this, rest);
};
function verisignWindow(obj) {
	vWin = window.open($(obj).attr("href"), 'verisignWindow', 'height=500,width=560');
	if (window.focus) vWin.focus();
	return false;
}

var dmjs = {};
var cracked = {};
