
function openImageWindow(productID)
{
	var window_left = (screen.width-700)/2;
	var window_top = (screen.height-500)/2;
	if (window_left < 0){
		window_left = 10;
	}
	if (window_top < 0){
		window_top = 10;
	}
	var URL = 'productPicture.asp?productID=' + productID;
	popUp = window.open(URL,'ProductImage','resizable=yes,scrollbars=yes,height=500,width=700,left=' + window_left + ',top=' + window_top + '');
}

function openEmailWindow(productID)
{
	var window_left = (screen.width-500)/2;
	var window_top = (screen.height-375)/2;
	var URL = 'emailForm.asp?productID=' + productID;
	popUp = window.open(URL,'emailForm','resizable=yes,scrollbars=yes,height=375,width=500,left=' + window_left + ',top=' + window_top + '');
}

function openLargeImageWindow(imagePath)
{
	var window_height = screen.height-50;
	var window_width = screen.width-50;

	var URL = 'largePicture.asp?imagePath=' + imagePath;
	popUp = window.open(URL,'KnifeMerchant','resizable=yes,scrollbars=yes');
}
