﻿function OpenPage(mypage, myname, t, l, w, h, scroll, status, toolbar)
{
	winprops = 'top='+t+',left='+l+',height='+h+',width='+w+',status='+status+',toolbar='+toolbar+',scrollbars='+scroll+',resizable';
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4)
	{
		win.window.focus();
	}
}