function makeRemote(url,name)
{
	// Define the size of your remote window in pixels with "width" and "height." 
	remote = window.open(url,name,"width=400,height=300,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no");

	// URL for site'/terms/terms.htm.
	remote.location.href = url;

	if (remote.opener == null)
		remote.opener = window; 
}



function SubscribeWin(url,name)
{
	// Define the size of your remote window in pixels with "width" and "height." 
	remote = window.open(url,name,"width=400,height=600,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no");

	// URL for site'/terms/terms.htm.
	remote.location.href = url;

	if (remote.opener == null)
		remote.opener = window; 
}

function makeRemoteII(url,name)
{
	// Define the size of your remote window in pixels with "width" and "height." 
	remote = window.open(url,name,"width=768,height=500,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no");

	// URL for site'/terms/terms.htm.
	remote.location.href = url;

	if (remote.opener == null)
		remote.opener = window; 
}
