
function showproddetails(prodcode) 
{
  window.open('production.aspx?ProdCode='+prodcode, 'ProdDetails', 'menubar=0,location=0,status=0,toolbar=0,scrollbars=1,resizable=0,height=510,width=695,left=10,top=10');
}

function showdiplomalist(modelcode) 
{
  window.open('diplomas.aspx?ModelCode='+modelcode, 'DiplomaList', 'menubar=0,location=0,status=0,toolbar=0,scrollbars=1,resizable=0,height=510,width=695,left=110,top=60');
}

function showdiplomadetails(id) 
{
  window.open('diploma.aspx?ID='+id, 'DiplomaDetails', 'menubar=0,location=0,status=0,toolbar=0,scrollbars=1,resizable=0,height=510,width=695,left=210,top=110');
}


