 function contactProcess() { 
 
   var qStrVal = querystring("i");
   
   if (qStrVal == 1){
	
	document.getElementById("2").style.display = 'block';
	document.getElementById("1").style.display = 'none';   
   }
 
} 
 
 function querystring(name) {
   
   // returns a named value from the querystring

    var tmp = ( location.search.substring(1) );
    var i   = tmp.toUpperCase().indexOf(name.toUpperCase()+"=");

    if ( i >= 0 )
    {
       tmp = tmp.substring( name.length+i+1 );
       i = tmp.indexOf("&");
       return unescape( tmp = tmp.substring( 0, (i>=0) ? i : tmp.length ));
    }

    return("");
 }
