function page(iPage, iForm)
{
	document.forms[iForm].elements["page"].value = iPage;
	document.forms[iForm].submit();
}

function newWindow(iLink,iWinName,iWidth,iHeight,iResizable)
{
	var win = window.open(""+iLink+"",""+iWinName+"","toolbar=no,statusbar=no,resizable="+iResizable+",width="+iWidth+",height="+iHeight+",scrollbars=yes,top="+((screen.height/2)-(iHeight/2))+",left="+((screen.width/2)-(iWidth/2)));
	win.focus();
}

function winResize(iWidth, iHeight)
{
	var intWidth = iWidth+55;
	var intHeight = iHeight+200;
	parent.window.resizeTo(intWidth,intHeight);
	parent.window.moveTo(((screen.width/2)-(intWidth/2)),((screen.height/2)-(intHeight/2)));
	parent.window.resizeTo(intWidth,intHeight);
}
