function openWindow(obj_name) {
    top.consoleRef=window.open('','myconsole',
        'width=680,height=320'
        +',menubar=0'
        +',toolbar=0'
        +',status=0'
        +',scrollbars=1'
        +',resizable=1');
    top.consoleRef.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">');
    top.consoleRef.document.writeln('<html>');
    top.consoleRef.document.writeln('<head>');
    top.consoleRef.document.writeln('<title>Comment for Objective<\/title>');
    top.consoleRef.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
    top.consoleRef.document.writeln('<link href="styles/sp_main.css" type="text/css" rel="stylesheet">');
    top.consoleRef.document.writeln('<\/head>');
    top.consoleRef.document.writeln('<body class="comment" onLoad="self.focus()">');
    top.consoleRef.document.writeln('<div id="container">');
    top.consoleRef.document.writeln('<form action="action">');
    top.consoleRef.document.writeln('<div>Enter your comments here for <span class="bold">' + (obj_name.substring(12)) + '<\/span>:<\/div>');    
    top.consoleRef.document.writeln('<textarea name="obj_comm" class="objective"><\/textarea>');
    top.consoleRef.document.writeln('<div class="buttonset">');
    top.consoleRef.document.writeln('<span class="read_only">Comments will remain editable after they are entered for the remainder of your session.<\/span>');
    top.consoleRef.document.writeln('<input type="button" name="save" value="Done" onClick="javascript:window.close();" \/>');
    top.consoleRef.document.writeln('<\/div>');
    top.consoleRef.document.writeln('<\/form>');
    top.consoleRef.document.writeln('<\/div>');
    top.consoleRef.document.writeln('<\/body>');
    top.consoleRef.document.writeln('<\/html>');
    top.consoleRef.document.close();
}



function openContactUsWindow() {
    window.open('ContactUs.aspx','','width=780,height=520,menubar=0,location=0,toolbar=0,status=0,scrollbars=1,resizable=1');
        
 }       
function openHowToUseWindow() {
    window.open('howtoUse.htm','','width=680,height=320');
        
    
}