<!--

var current_main_photo = 0;

function initMainPhoto()
{
	//preloads the Main Photo depending on the radio selected
	var oMPhoto = document.getElementById('main_photo');
    current_main_photo = oMPhoto.getAttribute('rel');
}

function changeMainPhoto(photo_name)
{
	var oMPhoto = document.getElementById('main_photo');
	oMPhoto.src = '/secureshop/photos/forms/medium/' + photo_name + '.jpg';
	current_main_photo = photo_name;
}

function enlargeMainPhoto()
{
	openWin('/secureshop/photos/forms/large/' + current_main_photo + '.jpg','','width=450,height=250, resizable=1' ); 
}

// end hiding scrupt --->


