<!--

// Copyright © GorillaSoft, Inc.  < www.gorillasoft.com >
// Description:	JavaScript Resources for 


// Open Window function

function openWindow(theURL,winName,features) 
	
	{ 
	
	shopwindow = window.open(theURL,winName,features);
	shopwindow.focus();
	
	}


	
// Privacy Policy Window

function openPrivacy(theURL,winName,features) 
	
	{ 
	
	shopwindow = window.open(theURL,winName,'menubar=0,scrollbars=0,resizable=0,height=350,width=500');
	shopwindow.focus();
	
	}
	
// Create Bookmark
		
function addbookmark(url,title)

	{
		if ((navigator.appName == "Netscape")&&window.sidebar) { 
			window.sidebar.addPanel(title, url,""); 
		} else if((navigator.appName == "Microsoft Internet Explorer")&&document.all) {
			window.external.AddFavorite( url, title);
		} 
	}

// -->
