function talentedOpen(url,name,w,h,x,y,center){
screenw = screen.availWidth;
screenh = screen.availHeight;

if (center=="1"){
x=(screenw-w)/2;
y=(screenh-h)/2;
}

window.open(url,name,'width='+w+',height='+h+',left='+x+',top='+y+',toolbars=no,statusbar=no,resizable=no,menubar=no');
}
