
/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}

function toggle(element) {
	if (document.getElementById(element).style.display == "none") {
		document.getElementById(element).style.display = "";
	} else {
		document.getElementById(element).style.display = "none";
	}
}
	function popUp(URL,width,height,scroll){
		var settings
		settings = "width="+width+",height="+height+",scrollbars="+scroll+",toolbar=no";
		popwin = window.open(URL,"",settings);
		popwin.focus();
	}
		function SortOrder(Gender , ProductType , Brand , Colour , Page , Order){
		 self.location.href = '?Gender=' + Gender + '&ProductType=' + ProductType + '&Brand=' + Brand + '&Colour=' + Colour + '&Page=' + 1 + '&Sort=' + Order ;
		}