//Open Link in a window
function OpenWinNew(file, name, width, height, scroll, size) {
	window.open(file, name, 'width=' + width + ', height=' + height + ', resizable=' + size + ', scrollbars=' + scroll + ', left=100, top=100')
}

function addbookmark(url, title){
	if (document.all) {
		window.external.AddFavorite(url,title)
	}
	else {
		alert("Please, press OK and then Ctrl+D to bookmark this site.")
	}
}