﻿// JScript File

function LoadEntryDetail(entry,nWidth,nHeight)
{
	var middle
	middle = "top=" + Math.floor((screen.height-nHeight)/2) + ",left=" + Math.floor((screen.width-nWidth)/2);
	window.open("showentry.aspx?id="+entry,"entrywindow","scrollbars=yes,width="+nWidth+",height="+nHeight+"," + middle);
}

function NewProduct(nWidth,nHeight)
{
	var middle
	middle = "top=" + Math.floor((screen.height-nHeight)/2) + ",left=" + Math.floor((screen.width-nWidth)/2);
	window.open("newproduct.aspx","entrywindow","scrollbars=yes,width="+nWidth+",height="+nHeight+"," + middle);
}


