var newWindow;
function open_webshop_window(doc_root) {
	if(newWindow && !newWindow.closed && newWindow.location) {
		newWindow.location = doc_root+"/webshop/index.php";
		newWindow.focus();
	}
	else {
		newWindow = window.open(doc_root+"/webshop/index.php", "webshopWindow", "width=721,height=600,toolbar=no,menubar=no,resizable=yes,scrollbars=yes,screenX=100,screenY=100");
		newWindow.focus();
	}
}
function open_webshop_window2(doc_root,id) {
	var name=doc_root.replace(/s/g,"");
	if(newWindow && !newWindow.closed && newWindow.location) {
		newWindow.location = "http://yourfastshop.co.nz/webshop/"+name+".php";
		newWindow.focus();
	}
	else {
		newWindow = window.open("http://yourfastshop.co.nz/webshop/"+name+".php", "webshopWindow", "width=721,height=600,toolbar=no,menubar=no,resizable=yes,scrollbars=yes,screenX=100,screenY=100");
		newWindow.focus();
	}
}

/***********************************************
* Bookmark site script- Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
* Modified by Eion Robb 2006/3/6
***********************************************/
function bookmarksite(title, url) {
	if (window.external)
		window.external.AddFavorite(url, title);
	else if (window.sidebar)
		window.sidebar.addPanel(title, url, "");
	else
		alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
}
function sethomepage(me) {
	try {
		me.style.behavior='url(#default#homepage)';
		me.setHomePage('http://www.yourfastshop.co.nz/webshop/');
	} catch (e) {
		alert("Cannot set homepage automatically sorry.");
	}
}
