function ctc(qry) {
    window.open('/contact/?id='+ qry ,'_blank' ,'width=700,height=400,scrollbars=yes,resizable=no,status=no,toolbar=no,menubar=no,location=no');
    $('#contact').removeAttr('onclick').removeAttr('href');
}
function getQryVal(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
    if (pair[0] == variable) {
        return pair[1];
    }
  } 
}
function getObj(id){
	return document.all ? document.all[id] : document.getElementById(id);
}
function getForm(id){
	return document.forms ? document.forms[id] : getObj(id);
}
/*
function printIt(id){
{
    try{
       var eTDMain = getObj(id);
       var oWindow = window.open('Print','PrintPreview','width=800,height=600');
       var strTDMain = '';
       strTDMain+="<html><head><title>PrintPreview</title>";
       strTDMain+='<link href="/App_Themes/Def/Style.css" type="text/css" rel="stylesheet" />';
       strTDMain+="</head>";
       strTDMain+='<body class="PrintForm"><div class=aligner>';
       strTDMain += eTDMain.value;
       strTDMain+="</div></body></html>";
       oWindow.document.write(strTDMain);
   }
   catch(e){}
}
*/

