//
// Frequently used javascript functions
//

//
// showPreview
//
//  Show the medium resolution image in a new window
//	Parameters:
//		fileName - name of the file to show
//		isImage - determines the size of the preview window
//
function showPreview(collection, imageId, isImage) {
	if (isImage) {
		window.open('showimage.pl?collection=' + collection + '&imageid=' + imageId + '&isimage=1' ,'ImagePreview','location=no,toolbar=no,status=no,directories=no,scrollbars=yes, resizable=yes, width=460, height=600'); 
	} else {
		window.open('showimage.pl?collection=' + collection + '&imageid=' + imageId + '&isimage=0' ,'ImagePreview','location=no,toolbar=no,status=no,directories=no,scrollbars=yes, resizable=yes, width=660, height=320'); 
	}
}

//
// showShirtDetails
//
// Show detailed information on the shirt
// Parameters:
//		shirtParams - information on the shirt
//
function showShirtDetails(shirtParams) {
		window.open("shirtdetails.pl" + shirtParams,'ShirtInfo','location=no,toolbar=no,status=no,directories=no,scrollbars=yes, resizable=yes, width=480, height=450'); 
}

//
// showPopupWin
//
// Show the specified help file in a new window
// Parameters:
//		page_location - URL to display
//		name - name for the window - NOT the page displayed window title
//
function showPopupWin(page_location, name) {
// function showPopupWin(page_location) {
	window.open(page_location,name,'location=no,toolbar=no,status=no,directories=no,scrollbars=yes, resizable=yes, width=620, height=400'); 
}

