// JavaScript Document

function openWin(url,windowName,Options) {
	window.open(url,windowName,Options);
	return false;
}
