
function canseeonlyfrominside()
{
	var dialog=(window.showModelessDialog)?true:false;
	if (dialog)
	{
		window.showModelessDialog("inside.htm",null,
				"dialogHeight:230px;dialogWidth:350px;edge:sunken;scroll:no;");
	}
	else
	{
	window.open("inside.htm","_blank",
	"height = 230px;scrollbars = no;width = 350px;resizable = yes "	,true);
	}
}