function showDoc(docURI)
{
	var newWin = window.open(docURI, 'DocWin', 'toolbar=no,width=600,height=450,scrollbars,resizable=yes');
	newWin.focus();
}

function showDoc(docURI, winName, w, h, otherFeatures)
{
        if (!winName || winName == '') winName = 'DocWin';
        if (!w || w == 0) w = 600;
        if (!h || h == 0) h = 450;
        if (!otherFeatures) otherFeatures = ',toolbar=no,menubar=yes,scrollbars,'; else otherFeatures = ',' + otherFeatures;
        var newWin = window.open(docURI, winName, 'width=' + w + ',height=' + h + ',top=75,left=75,resizable=yes' + otherFeatures);
	newWin.focus();
}