function popup(url,name,toolbar,location,directories,status,menubar,scrollbars,resizable,width,height,top,left) {
	this[name] = window.open(url,name,"toolbar="+toolbar+",location="+location+",directories="+directories+",status="+status+",menubar="+menubar+",scrollbars="+scrollbars+",resizable="+resizable+",width="+width+",height="+height+",top="+top+",left="+left+"");
	window[name].focus();
}

/*****************************************************************************/

function generalpopup(url) {
	popup(url,'general','no','no','no','yes','no','yes','no',550,500,10,10);
}

/*****************************************************************************/


function checkimagepopup(url) {
	popup(url,'general','yes','no','no','yes','yes','no','yes',768,570,10,10);
}

/*****************************************************************************/

function redirect(element) {
    
popup(element.options[element.selectedIndex].value,'general','yes','yes','no','yes','yes','yes','yes',640,480,10,10);
}

/*****************************************************************************/

function veriSignPopUp(url) {
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
self.name = "mainWin";
}

                  
