// ---------------------------
// used to launch shop windows
function shopPop(theURL, uid) {
    myPop = window.open(theURL, uid + 'shoppopup', 'width=380,height=400,top=10,left=10,scrollbars=1,resizable=1, status=0');
    if(myPop){
      myPop.focus();
    }
    else{
      alert('We have detected that you are using popup blocking software.\nTo view the chosen item, please enable popups for http://thefamousgrouse.com/.');
    }
}

function openwindow(theURL,uid)
{
	
	if (uid=="") {
		uid="shopPOP";
	}
window.open(theURL,uid,"location=1,menubar=1,toolbar=1,resizable=1,status=1,scrollbars=1,top=15,left=10");
}