function OpenWindow(sName, sURL, nWidth, nHeight, bLocation, bResize, bScroll, bTool, bStatus, bMenu) {	

	var bIE = (document.all) ? true:false;	
	var bNN = (document.layers) ? true:false;
	
	var nXMax = screen.width;
	var nYMax = screen.height;
	var nXName = "left=";
	var nYName = "top=";	
	var nXValue = 25;
	var nYValue = 25;
	
	if (bNN) {		
	
		nXName = "screenx=";
		nYName = "screeny=";
	}
		
	nXValue = (nXMax - nWidth)/2;
	nYValue = (nYMax- nHeight)/2;
	
	window.open(sURL,sName,"width=" + nWidth + ",height=" + nHeight + "," + nXName + nXValue + "," + nYName + nYValue + ",location=" + bLocation + ",resizeable=" + bResize + ",scrollbars=" + bScroll + ",toolbar=" + bTool + ",status=" + bStatus + ",menubar=" + bMenu);
}

function Favourite(sURL, sCopy) {

	var sFinalCopy = "vintagecellars.com.au";
	
	if (sCopy != "") {
		
		sFinalCopy += " - " + sCopy
	}

	if (window.external) {
		
   window.external.AddFavorite(sURL, sFinalCopy)
  } else { 
	
   alert("Sorry, your browser does not support this feature. \n \n Please download the latest version of Internet Explorer at: \n http://www.microsoft.com/windows/ie/");
	}
}

function Focus(sElement) {
	
	if (sElement != "") {
		
		sElement.focus();
	}
}