function addBookmark() {
	if (window.sidebar) { 
		window.sidebar.addPanel (document.title, location.href, ""); 
		}
	else if (document.all) {
		window.external.AddFavorite (location.href, document.title);
		}
	else if (window.opera && window.print) {
		return true;
		}
	}
function windowOpen(url, width, height) {
	var Win = window.open(url,"windowOpen",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );
	}