////////////////////////////
// open window
////////////////////////////
function ShowWndw(addr,w,h,scroll) {
	if(scroll == true) { attrib = ',scrollbars=yes'; }
	else { attrib = ',scrollbars=no'; }
	myWndw = window.open(addr,'myWndw','height='+h+',width='+w+attrib);
}

function ShowWndw2(addr,w,h,scroll) {
	if(scroll == true) { attrib = ',scrollbars=yes'; }
	else { attrib = ',scrollbars=no'; }
	myWndw2 = window.open(addr,'myWndw2','height='+h+',width='+w+attrib);
}

function CloseSubWndw() {
	/*
	if(myWndw != "undefined") {
		if(myWndw.closed != true) {
			myWndw.close();
			myWndw = "undefined";
		}
	}
	*/
}

function DoOver(sender) {
	document.all[sender].style.backgroundColor = "#FF0000";
	document.all[sender].style.cursor = "pointer";
}

function DoOut(sender) {
	document.all[sender].style.backgroundColor = "#000000";
	document.all[sender].style.cursor = "auto";
}
