///////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////  JAVASCRIPT LIBRARY ////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////

function formHandler(form){
var URL = document.brandsform.brands.options[document.brandsform.brands.selectedIndex].value;
window.location.href = URL;
}

function formHandler2(form){
var URL = document.form1.sale.options[document.form1.sale.selectedIndex].value;
window.location.href = URL;}


function  make_window (myUrl,myTarget,myWidth,myHeight,y0,x0) {


attributes ="toolbar=no,width=";
attributes = attributes + myWidth;
attributes = attributes + ",height=";
attributes = attributes + myHeight;
attributes = attributes + ",status=no,scrollbars=no,resize=no,menubar=no,top=";
attributes = attributes + y0;
attributes = attributes + ",left=";
attributes = attributes + x0;

theWindow=window.open(myUrl,myTarget,attributes);


}


