function getconfirm() 
{ 
if (confirm("Are you sure you want to remove this record?")==true) 
return true; 
else 
return false;
}

function popupimage(iid){
  var w =440;
  var h =520;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('image_popup.aspx?iid='+iid,'uksonarimages','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=no,resizable=yes');
	q.focus();
}

function popupTandC(){
  var w = 460;
  var h = 340;
  var winleft = (screen.width - w) / 2;
  var wintop = (screen.height - h) / 2;
	var q = window.open('tandc.aspx','uksonarimages','width='+w+',height='+h+',left='+winleft+',top='+wintop+',toolbars=no,statusbar=no,scrollbars=yes,resizable=yes');
	q.focus();
}