//Add event listener for onmouseover accommodate both W3C and Microsoft
	//Toggle the visibility for the newDiv and position it.
	 
	document.onmousedown = quickView;
	 
	 
	function quickView(e)
	{
	    if (!e) var e = window.event;
	    var target = e.target || e.srcElement;
	    var bWide = window.innerWidth || document.documentElement.clientWidth;
	 
	 
	     
	    if(target.className == 'p-image')
	    {
	        var dTarg = target.parentNode.lastChild;
	        dTarg.style.visibility = 'visible';
	        dTarg.style.top = '310px';
	        dTarg.style.left = '350px';    
	        	         
	        target.onmouseup = hideQuickView;
	         
	         
	         
	    }
	     
	}
	 
	function hideQuickView(e)
	{
	    if (!e) var e = window.event;
	    var target = e.target || e.srcElement;
	     
	    target.parentNode.lastChild.style.visibility = 'hidden';
	     
	}
