function resizeGallery(type)
{
        var galdiv = $('gallery_div');
        var galframe = $('gallery_iframe');
        if (type == 'videos')
        {
        		galdiv.style.left = '0px';
                galdiv.style.width = '1020px';
                galdiv.style.height = '670px';

                galframe.style.width = '1020px';
                galframe.style.height = '640px';
        }
        else
        {
                galdiv.style.width = '710px';
                galdiv.style.height = '670px';

                galframe.style.width = '710px';
                galframe.style.height = '640px';
        }
}

function showImageGallery(productID, type)
{
	resizeGallery(type);
	var galdiv = $('gallery_div');
   
	galdiv.style.display = 'block';
	$('gallery_iframe').src = '/views/content/gallerypopup/mediaGallery.php?productID=' + productID + '&type=' + type;
	$('gallery_div_close').addEvent('click', function() { galdiv.style.display = 'none'; return false; });

	// Make gallery_div draggagle.
	var myDrag = new Drag.Move(galdiv);
}

