function popup(url) {
var w=600;
var h=180;
var leftval=((screen.width-w)/2);
var topval=((screen.height-h)/2);
var load = window.open(url,'','height='+h+',width='+w+',left='+leftval+',top='+topval);
}
