
function hideSubMenu(sDiv){
	var div = document.getElementById(sDiv);
	if(div.style.display != 'none'){div.style.display = 'none';}
	else{div.style.display = 'block';}
}		


// file-upload window
function uplFileWin(iTyp,iProd) {
	var uri = "http://www.wholesalebeads.com.au/admin/upload/upload.asp"
	var qryStr = "?fileType=" + iTyp +"&fileID="+ iProd +"&newFile=true"
	uplWin = window.open(uri+qryStr,"uploadWin","menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0, left=10, top=10, width=450, height= 300")
	uplWin.opener = self
	uplWin.focus()
}


function setCatsWin(iTyp, iRef){
	var uri = "http://www.wholesalebeads.com.au/admin/setCats.asp";
	var qryStr = "";
	if(iTyp==1){qryStr = "?pgtyp=1&prodID="+ iRef;}
	if(iTyp==2){qryStr = "?pgtyp=2&catID="+ iRef;}
	uplWin = window.open(uri + qryStr, "uploadWin", "menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0, left=10, top=10, width=450, height= 300")
	uplWin.opener = self
	uplWin.focus()
}



function reloadopener(){
	window.opener.location = window.opener.location;
}