function openWin(url,win_name,width,height,status,menubar)
{
	var openWin = window.open(url,win_name,"width=" + width + ", height=" + height + ", statusbar="+status+",menubar="+menubar+",scrollbars=yes,resizable=yes");
	openWin.focus();
}

function check_opener_show_links (links) {
	if( window.opener == null ) {
		document.write('<p>&bull; <small><a href="http://www.denysys.com/">Denysys Home</a> &#8250;' + links + '</small></p>' );
	}
}