<!--
function process (){

//set up a string with all of your window parameters
var sProperties = "";
sProperties += "scrollbars=1,resizable,";
sProperties += "width=568,";
sProperties += "height=495,";
sProperties += "status=0,";
sProperties += "menubar=0,";
sProperties += "location=0,";
sProperties += "toolbar=0,";
sProperties += "screenX=0,";
sProperties += "screenY=0,";
sProperties += "left=0,";
sProperties += "top=0";

SendWindow = window.open("../process/process_full.htm","SendWindow",sProperties);
SendWindow.focus(); }
//-->
