function fcOv(btnPath){
	var ext = btnPath.src.match(/\....$/);
	btnPath.src = btnPath.src.replace(/\_up\....$/, '_ov' + ext);
}
function fcUp(btnPath){
	var ext = btnPath.src.match(/\....$/);
	btnPath.src = btnPath.src.replace(/\_ov\....$/, '_up' + ext);
}

function fcSwapOv(targetName, btnPath){
	var ext = btnPath.src.match(/\....$/);
	targetName.src = btnPath.src.replace(/\_s\....$/, '_m' + ext);
	startImage = btnPath.src.replace(/.._s\....$/, 'chart' + ext);

}
function fcSwapOut(targetName){
	targetName.src = startImage;
}

function fcFormWindow(url,windowName){
	var newWin=window.open(url, windowName, 'width=800, height=730, scrollbars=yes, resizable=yes');
	newWin.focus();
}

function fcSubWindow(url,windowName){
	var newWin=window.open(url, windowName, 'width=610, height=500, scrollbars=yes, resizable=yes');
	newWin.focus();
}

function fcZoomWindow(url,windowName){
	var newWin=window.open(url, windowName, 'width=502, height=480, resizable=yes');
	newWin.focus();
}
function fcLinkWindow(url,windowName){
	var newWin=window.open(url, windowName);
	newWin.focus();
}


function fcClose(){
	window.close();
}

function fcMainControl(url){
	opener.window.location=url;
	blur();

}

function sendMail(acname) {
act = acname
dm = "canopusdrums.com"
location.href = "mailto:" + act + "@" + dm;
}
/*
*/
