// JavaScript Document

function openNewWindow(url,name,features) {
	win = window.open(url,name,features);
}

