/* Apparel scripts
*************************************/
function showVariant(itemName){
	document.getElementById('mainProductImage').src='/images/product/apparel/' + itemName + '.gif';
	}
			
// popup
var imgName
var leftPos
var topPos
	
function launchPop(img_id){
	if (screen){
		leftPos = (screen.width/2) - 225
		topPos = (screen.height/2) - 250 // roughly 1/2 the height
		}
	popUrl = "/product/apparel/popup.php?id=" + img_id;
	window.open(popUrl, 'LargeImagePop', 'width=450, height=450, toolbar=no, status=no, menubar=no, scrollbars=no, resize=no, left='+leftPos+', top='+topPos);
	}
	
	
/* Accessories scripts
*************************************/
function showAccessoriesVariant(itemName){
	document.getElementById('mainProductImage').src='/images/product/accessories/' + itemName + '.gif';
	}
