//Javascript functions

function _jsopenwin(path,name,attributes) {
	/* ATTRIBUTES (separate with ',')
		width=[x]
		height=[y]
		resizable=[yes|no]
		scrollbars=[yes|no]
		toolbar=[yes|no]
		location=[yes|no]
		directories=[yes|no]
		status=[yes|no]
		menubar=[yes|no]
		copyhistory=[yes|no]
	*/
	var winval = window.open(path,name,attributes);
}