/*---------------------

PRINT CONTENT written to grab content from a page's content pane
Open it in a new, unstyled window, and print

----------------------*/

//open window function that prevents the "Object Window" message on the parent window
function new_window(url, winwidth, winheight, winleft, wintop) {

parameters = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width="+winwidth+",height="+winheight+",left="+winleft+",top="+wintop;


link = window.open(url,"Link",parameters);


}

