function getRefToDiv(divID) {
    if( document.layers ) { //Netscape layers
        return document.layers[divID]; }
    if( document.getElementById ) { //DOM; IE5, NS6, Mozilla, Opera
        return document.getElementById(divID); }
    if( document.all ) { //Proprietary DOM; IE4
        return document.all[divID]; }
    if( document[divID] ) { //Netscape alternative
        return document[divID]; }
    return false;
}
			
			function showSpec(page)
			{ 
			  newwin=window.open("http://www.nabishi.com/shoppopupsupport/shop_pages/"+page, "spec", "menubar=no, toolbar=no, scrollbars=yes, width=640");	
			  if (window.focus) {newwin.focus();}
			}
			
			
			function showPrintSpec(page)
			{
			  newwin=window.open("http://www.nabishi.com/shoppopupsupport/downloads/"+page, "printSpec", "menubar=yes, toolbar=yes, scrollbars=yes");
			  if (window.focus) {newwin.focus();}
			}
			
			function lnkhover()
			{
				this.style.cursor='hand';
			}