// JavaScript Document
function rollOver(img, url) {
	document.images[img].src=url;
}
function rollOut(img, url) {
	document.images[img].src=url;
}
function rollDown(img, url) {
	document.images[img].src=url;
}
function modalDialogShow(url,width,height)
{
	var vRetVal=window.showModalDialog(url,window,"dialogWidth:"+width+"px;dialogHeight:"+height+"px;edge:Raised;center:1;help:0;resizable:1;maximize:0");
	if(vRetVal)return vRetVal;
	else return "";
}
function modalDialogShow2(url,width,height)
{
	var vRetVal=window.showModalDialog(url,dialogArguments,"dialogWidth:"+width+"px;dialogHeight:"+height+"px;edge:Raised;center:1;help:0;resizable:1;maximize:1");
	if(vRetVal)return vRetVal;
	else return "";
}
function dialogShow(var_a, var_b)
{
	var a = var_a+'?send_url='+var_b
	return window.open(a,"display","width=510,height=655,menubar=no,toolbar=no,resizable=no,statusbar=yes");
}
