var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings ='height='+h+',width='+w+',top=0,left='+LeftPosition+',scrollbars='+scroll+',resizable=no';
win = window.open(mypage,myname,settings);
win.focus();
}

function showAddThread(){
NewWindow("/webweaver/templates/FP28/FP28AddThread.asp?",'showAddThread','600','250','no');
}

function showAdminEdit(pageno,editmode,entryid,DUrl){
NewWindow("/webweaver/templates/FP28/FP28AdminEditFrame.asp?pageno="+pageno+"&editmode="+editmode+"&entryid="+entryid+"&DUrl="+DUrl,'showAdminEdit','800','500','no');
}

function showAdminNotice(){
NewWindow("/webweaver/templates/FP28/gotoadminNotice.asp",'showAdminEdit','800','500','no');
}

function showmenu()
{
if (document.all)
	{
		document.body.cols="*,268,0,0"
	}

}

