// JavaScript Document	
	
	function view_report(print_option)
	{
		var form = document.report_form;
		
		var file = "view_report.php?status=" + form.status.value + "&from="+form.from.value+"&to="+form.to.value+"&print="+print_option+"&report_name="+form.report_name.value;
		
		var hnwd = launchCenter(file, "VIEWREPORT", 600, 700, true, true );
	}
	
	function send_to_friend(id)
	{
		var file = "refer_to_friend.php?media_id=" + id;
		var hnwd = launchCenter(file, "SENDTOFRIEND", 400, 500, false, false );
	}
	
	function send_lightbox(sesion)
	{
		var file = "send_lightbox.php?session=" + sesion;
		var hnwd = launchCenter(file, "SENDTOFRIEND", 400, 500, false, false );
	}
	
	
	function close_window()

	{						

		window.opener.document.location.reload();

		window.close();

	}

	
	function open_iptc(id)
	{
		var file = "iptc.php?id=" + id;
		var hnwd = launchCenter(file, "IPTC", 650, 450, true, true );
	}
	

	function empty_lightbox(message, url)

	{

		var answer = confirm(message);


		if ( answer == true )

		{
			if ( url != "" )
			{
				location.href = url + "?pageId=2000";
			}
			else
			{
				location.href = "index.php?pageId=2000";
			}
		}

	}

	

	function popup_agreement()

	{

		var browse = "agreement.php";

		var hnwd = launchCenter(browse, "AGREEMENT", 600, 450, true, false );	

	}

	

	function get_link(category)

	{

		var url = "get_link.php?category="+category;



		var hnwd = launchCenter(url, "POPUP", 100,400, false, false);

	}

	

	

	function onhelp()

	{

		var browse = "help.html";

		window.open(browse,'popup', 'resizable=yes,status=no,toolbar=no,scrollbars=yes,location=no,menu=no,width=550,height=700');  

	}

	

	function upload_new_watermark()

	{

		var browse = "upload_logo.php";

		var hnwd = launchCenter(browse, "LOGO", 120, 510, false );	

	}

	

	function popupBrowsewin( )

	{	

		var browse = "download_browse.php";

		var hnwd = launchCenter(browse, "DownloadBrowse", 400, 300, false );	

	}

	

	function show_icon(sel)

	{

		var form = document.category;



		form.showIcon.src = sel.options[sel.selectedIndex].value;

	}

	

	

	function upload_download_image(id, name, check)

	{

		if ( check.checked )

		{

			var file = "upload.php?id="+id+"&name="+name+"&act=rem";

		}

		else

		{

			var file = "upload.php?id="+id+"&name="+name+"&act=add";

		}

		

		var opener = launchCenter(file, "LOGO", 120, 500, false) 

	}

	

	function launchCenter(url, name, height, width, resize, scrollbar) 

	{

	 	var str = "height=" + height + ",innerHeight=" + height;

			

		if ( resize )

		{

  			str += ",width=" + width + ",innerWidth=" + width + ",resizable=yes";

		}

		else

		{

			str += ",width=" + width + ",innerWidth=" + width;

		}
		
		
		if ( scrollbar )
		{
			str += ",scrollbars=yes";
		}

		

		if (window.screen) 

		{

			var ah = screen.availHeight - 30;

		    var aw = screen.availWidth - 10;



		    var xc = (aw - width) / 2;

		    var yc = (ah - height) / 2;



		    str += ",left=" + xc + ",screenX=" + xc;

		    str += ",top=" + yc + ",screenY=" + yc;

		}

		

	    return window.open(url, name, str);

	}

