window.onerror=null
onError=null

if (top.location != self.location) { top.location=self.location; } 

$(function() {
//Right click
$(document).bind("contextmenu",function(e){
return false;
});
});

function fSort() {
var theAgent = navigator.userAgent;
if (theAgent.indexOf("MSIE") != -1) { theAgent = "ie"; }
if (theAgent == "ie") {
var sFactor = "1.9";
for (i = 0; i <= document.forms.length - 1; i++) {
for (j = 0; j <= document.forms[i].elements.length - 1; j++) {
switch (document.forms[i].elements[j].type) {
case ("text"):document.forms[i].elements[j].size = Math.round(document.forms[i].elements[j].size * sFactor);
break;
case ("password"):document.forms[i].elements[j].size = Math.round(document.forms[i].elements[j].size * sFactor);
break;
case ("textarea"):document.forms[i].elements[j].cols = Math.round(document.forms[i].elements[j].cols * sFactor);
break;
default:break;
}}}}
var objInput;
objInput = document.forms[0].elements[0];
objInput.focus();
objInput.value = objInput.value;
}