function fullscreen(theURL) {
windowfull=window.open(theURL,"", "scrollbars=0, resizable=yes, toolbar=no, location=no, status=no");
windowfull.moveTo(0,0);
windowfull.resizeTo(window.screen.availWidth, window.screen.availHeight);
windowfull.focus();
}

function OpenComments (c) {
    window.open(c,
                    'comments',
                    'width=480,height=480,scrollbars=yes,status=yes');
}

function OpenTrackback (c) {
    window.open(c,
                    'trackback',
                    'width=480,height=480,scrollbars=yes,status=yes');
}

function openWindow(theURL) {
	windowfull = window.open(theURL,"","scrollbars=no,resizable=yes,toolbar=no,location=no,status=no,width=550,height=550");
	windowY=((window.screen.availHeight/2)-275)
	windowX=((window.screen.availWidth/2)-275)
	windowfull.moveTo(windowX,windowY);
	windowfull.focus();
}

function openWindowP(theURL) {
	windowfull = window.open(theURL,"","scrollbars=no,resizable=yes,toolbar=no,location=no,status=no,width=775,height=625");
	windowY=((window.screen.availHeight/2)-312)
	windowX=((window.screen.availWidth/2)-385)
	windowfull.moveTo(windowX,windowY);
	windowfull.focus();
}