


function magnifyDetail( dressId )
	{
	var img = document.images['detail'];
	window.open('magnify_detail.asp?dress=' + dressId, 'popup', img.width != null && img.width != 0 ? 'scrollbars=yes,resizable=yes,width=' + (img.width+15) + ',height=' + (img.height+15) : 'width=900,height=800' );
	}
