/*
	Module Name:- Phhotoset View
	File Name  :- photoset_view.js
	Create Date:- 14-Mar-2006
	Intially Create By :- 0014
	Update History:
*/
<!--

function show_details(Url)
{
		var width = 810;
	    var height = 768;
    	var left = parseInt((screen.availWidth/2) - (width/2));
	    var top = parseInt((screen.availHeight/2) - (height/2));

		var windowFeatures = "width=" + width + ",height=" + height + ",scrollbars=yes,status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    	
		window.open(Url, "Photoset", windowFeatures);
		
		return false;
}

/*function show_details(surl)
{
   window.open(surl ,'','resizable=yes,titlebar=no,menubar=no,addressbar=no,statusbar=no,scrollbars=yes,width=550,height=550,left=225,top=100');
   return false;
}*/


function confirm_favorite_photoset()
{
	if(confirm("Are you sure you want to add this photoset in your favorite photoset list?"))
	{
		return true;
	}
	return false;

}
//-->

