



<!-- 



// Set global variable newwin so it can be referred to by other functions

var newwin; 



// BEGIN Open Window 

function popup(file_path,win_name,win_width,win_height) {



	newwin = window.open("",win_name,"toolbar=no,directories=no,menubar=no,scrollbars=yes,width=" + win_width + ",height=" + win_height + ",left=10,top=10,resizable=yes");

	newwin.location = file_path;

	newwin.focus();



} // END popup(fname,wname,wwidth,wheight)







// BEGIN Open window and populate it 

function popup_stuff(content,win_name,win_width,win_height) {



	newwin = window.open("",win_name,"toolbar=no,directories=no,menubar=yes,scrollbars=auto,width=" + win_width + ",height=" + win_height + ",left=15,top=15,resizable=yes");

	newwin.document.write(content);

	newwin.focus();



} // END popup_pop(contents,wname,wwidth,wheight)





// -->


