function popProductImg( sku, width, height ) {
	var popup			= document.getElementById( 'pPopupBox' ); // Eventually use the "sku" param
	var popupShadow		= document.getElementById( 'pPopupBoxShadow' );
	var width			= document.documentElement.clientWidth;
	var offset			= 20;
	var halfPopupWidth	= 250;
	/*
	// Get window width
	var myWidth = screen.width;
	// Set pop up in the middle of the window
	var leftIndent = (myWidth / 2) - (popup.style.width /2);
	*/
	var leftIndent = (width / 2) - halfPopupWidth;
	
	if( popup.style.display != 'block' ) {
		popup.style.display			= 'block';
		popup.style.left			= leftIndent;
		popupShadow.style.display	= 'block'; 
		popupShadow.style.left		= leftIndent + offset;
		popupShadow.style.top		= 200 + offset;
	} else {
		popup.style.display			= 'none';
		popupShadow.style.display	= 'none';
	}
}