function redirectpopupwindow(url,wintitle,parameters){
 window.open(url,wintitle,parameters);
}

function CFC_popup(url, name,  features){
 var defaultWidth = 500;
 var defaultHeight = 400;
 if (features.indexOf("width") == -1) features += ",width=" + defaultWidth;
 if (features.indexOf("height") == -1) features += ",height=" + defaultHeight;
 var w = window.open(url, name, features);
 w.focus();
}

