// javascript to open a new window with variable URL

function launchwin(url) {
	newwin = window.open(url,"win","width=700,height=200,resizable=yes,scrollbars=yes,focus");
	newwin.focus();
}

function closethewindow() {
	self.close();
}