// <!--

function printSort(cat, type) {

document.write("<br><img src=/images/clear.gif height=10 width=99 border=0><br>");
// n=name
// r=retailer
// s=savings
document.write("<font face=Verdana size=-1><b>");
if (type == "n") {
document.write("Sorted by product name");
}
if (type == "r") {
document.write("Sorted by retailer");
}
if (type == "s") {
document.write("Sorted by savings");
}

document.write("</b>&nbsp;|&nbsp;");

if (type == "n") {
document.write("<script>qurl(\""+cat+"-site.shtml\", \"Sort by retailer\")</script>");
document.write("&nbsp;|&nbsp;");
document.write("<script>qurl(\""+cat+".shtml\", \"Sort by savings\")</script>");
}

if (type == "r") {
document.write("<script>qurl(\""+cat+"-alpha.shtml\", \"Sort by product name\")</script>");
document.write("&nbsp;|&nbsp;");
document.write("<script>qurl(\""+cat+".shtml\", \"Sort by savings\")</script>");
}

if (type == "s") {
document.write("<script>qurl(\""+cat+"-alpha.shtml\", \"Sort by product name\")</script>");
document.write("&nbsp;|&nbsp;");
document.write("<script>qurl(\""+cat+"-site.shtml\", \"Sort by retailer\")</script>");
}
return;
}

//-->
