// Javascript stuff for the APS Web Shop.
// All this js is optional to the use of the site, so that users with js
// disabled will still be able to use the site properly.

// Globals
var gBasketWind = '';
var gPreviewWind = '';
// This needs to be changed to reflect the final server path.
var gPathToBasketPHP = '/new/shop/code/basket.php';

//-------------------------------------------------------------
// Opens the APS Shopping Basket in a floating window.
//-------------------------------------------------------------
function openBasketWind()
{	
	gBasketWind = window.open(gPathToBasketPHP,'Basket','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=540,height=700,left=20,top=10,copyhistory=0');
	gBasketWind.focus();
}

//-------------------------------------------------------------
// Opens a Preview of a photo in a floating window.
//-------------------------------------------------------------
function openPreviewWind(imgPath)
{	
	gPreviewWind = window.open(imgPath,'Preview','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=600,left=30,top=20,copyhistory=0');
	gPreviewWind.focus();
}



