
function displayWindow(url, width, height) {
      var url1 = 'bigimage.asp?pic=' + url + '&height=' + height + '&width=' + width;
	  var Win = window.open(url1,"1",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=no,screenX=0,screenY=0,top=0,left=0' );
 }
 
function Validationkeyword(theform) {
  if (theform.Keyword.value == "") {
      alert("Please enter your search keyword.");
      theform.Keyword.focus();
      return (false);
    }
  
  return (true);
 } 
 
function vldSelection(){
var f = window.document.frmAdSearch;

if (f.bandtype.options[f.bandtype.options.selectedIndex].value == "" && f.gender.options[f.gender.options.selectedIndex].value == "" && f.style.options[f.style.options.selectedIndex].value == "" && f.movement.options[f.movement.options.selectedIndex].value == "" && f.pricerange.options[f.pricerange.options.selectedIndex].value == "") {
    alert("Please at least make one selection.");
    f.bandtype.focus();
    return (false);
    }
            
    return (true);  
  } 
  

