﻿var remote_window = null;

function open_popup(width, height, url)
	{
		var settings;

		settings=
		"toolbar=no,location=no,directories=no,"+
		"status=no,menubar=no,scrollbars=yes,"+
		"resizable=no,width="+width+",height="+height;

		remote_window=window.open('','remote',settings);

		 if (remote_window != null) 	{
 		 if (remote_window.opener == null)
		 remote_window.opener = self;
		 remote_window.location.href = url;
		 remote_window.focus();
					}
	}		



function popup2(url)
		{
			open_popup(screen.width - 200,screen.height - 200,'/includes/notice2.html?'+url);		
		}

