/**
* LAST MOD: APR 18 2009
* ---------------------
*/
//HIGHLIGHT INPUT FIELD UPON CLICK
function highlightText(t) {
	t.select();
}
/**
* ty = poem type
* p = page to open
*/
function popViewer(ty,p) {
    var ww=screen.width;
    var hh=screen.height;
    var isWW=(ww/2)-340;
    var isHH=(hh/2)-250;
    if(ty=="sp") {
        p="submitted/"+p;
    }
    window.open('dir_poems/'+p,'',config='width=680,height=500,scrollbars=yes,statusbar=no,left='+isWW+',top='+isHH+',resizable=0');
}

