if (window != top) 
	top.location.href = location.href;

function changeScrollbarColor(C){
  if (document.all){
    document.body.style.scrollbarBaseColor = C
  }   
}

function GoBtn_Click() {
	if (document.searchForm.srchTxt.value.trim() == "") {
		document.all.Label1.innerHTML = "Please enter search text...";
		document.all.Label1.style.display = 'block';
		return false;
	} 
	if (document.searchForm.products.options[document.searchForm.products.selectedIndex].value == "") {
		document.all.Label1.innerHTML = "Please select a category...";
		document.all.Label1.style.display = 'block';
		return false;
	}
	document.searchForm.submit();
	return true;
}

function checkKey() {
	if (event.keyCode == 13) {
		GoBtn_Click();
	}
}

String.prototype.trim = function() {
	// skip leading and trailing whitespace
	// and return everything in between
	var x=this;
	x=x.replace(/^\s*(.*)/, "$1");
	x=x.replace(/(.*?)\s*$/, "$1");
	return x;
}

function photo_opener(imgName) {
	open('/sasa_online/store/PhotoDisplay.aspx?imgName=' + imgName, '_blank', 'height=375, width=350, scrollbars=no, status=no');
}
