function open_new_window(url, bob)
{ 
if
(getcookie("visitorname") == "")
{new_window = window.open(url,'window_name','toolbar=0,menubar=0,resizable=0,dependent=0,status=0,width=460,height=620,left=25,top=25,scrollbars=1')}
else
{
if (bob == "1")
{{new_window = window.open(url,'window_name','toolbar=0,menubar=0,resizable=0,dependent=0,status=0,width=460,height=620,left=25,top=25,scrollbars=1')}}
}
}
// New window attributes
// url - the variable for the url of the page in the new window
//     that is passed by placing it single-quoted in either the link or form
// window_name - the name of the new window being opened
// width - width of the new window in pixels
// height - height of the new window in pixels
// top - the new widow top will appear xx number of pixels from the top of the screen
// left - the new widow left margin will appear xx number of pixels from the left of the screen

// The following attributes will suppress the respective window elements
// when the value is set to zero or if omitted.  When listed or equal to one
// the window attribute will appear
// toolbar,menubar,resizable,dependent,status
