// Declare window name of parent window so it can be referred to by child window

window.name = "topdog"



// 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=yes,directories=yes,menubar=yes,scrollbars=yes,width=" + win_width + ",height=" + win_height + ",left=10,top=10,resizable=yes");

	newwin.location = file_path;

	newwin.focus();



} // END popup(file_path,win_name,win_width,win_height)



