function QueryString(id)
{
var svalue = location.search.match(new RegExp("[\?\&]" + qs + "=([^\&]*)(\&?)", "i"));
return svalue ? svalue[1] : "";
}
{
var svalue = location.search.match(new RegExp("[\?\&]" + qs + "=([^\&]*)(\&?)", "i"));
return svalue ? svalue[1] : "";
}