function submitFooter(showMsgValue)
{
if(!document.forms[0])
{
var url = document.URL;
if(url.indexOf("showPackMsg") == "-1")
{
if(url.indexOf("?") == "-1")
{
document.location.href=(url+"?showPackMsg="+showMsgValue);
}
else
{
document.location.href=(url+"$showPackMsg="+showMsgValue);
}
}
else if(parseInt(url.indexOf("showPackMsg=true")) > 0 )
{
url = url.replace("showPackMsg=true","showPackMsg=false");
document.location.href=url;
}
else if(parseInt(url.indexOf("showPackMsg=false")) > 0 )
{
url = url.replace("showPackMsg=false","showPackMsg=true");
document.location.href=url;
}
}
else
{
if(!document.forms[0].packevent)
{
submitForm(0,1,{'showPackMsg':showMsgValue});
}
else
{
submitForm(0,1,{'showPackMsg':showMsgValue,'event':document.forms[0].packevent.value});
}
}
}
]]>