function winopen(url) {
	window.open(url,"","toolbar=yes, directories=no, location=no, status=no, menubar=no, resizable=yes, scrollbars=yes, width=715, height=700");

	/*
	"toolbar=no, directories=no, location=no, status=yes, menubar=no, resizable=no, scrollbars=no, width=300, height=200"

	toolbar - displays the browser buttons (forward, back, home, print, etc) 
	location - displays the field that shows the URL for the window 
	directories - displays other web browser directory buttons 
	status - displays the browser status bar at the bottom 
	menubar - displays the web browser menu bar 
	resizable - allows user to change the size of the window 
	scrollbars - provides scroll bars if the content is larger than the window size 
	width=XX - specifies the width of the window when opened, in pixels 
	height=YY - specifies the height of the window when opened, in pixels
	*/
}
