var win = null;
function NewWindow(mypage, myname, w, h, scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+', width='+w+', top='+TopPosition+', left='+LeftPosition+', scrollbars='+scroll+', noresize, toolbar=0, status=0, menubar=0'
	win = window.open(mypage,myname,settings)
}

function Inventory(URL)
{
	w = 710;
	h = screen.height;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	window.open(URL, 'InventoryDetails', 'left='+LeftPosition+', top='+TopPosition+', toolbar=1, location=1, directories=1, status=1, menubar=1, scrollbars=1, resizable=1, width='+w+', height='+h);
}

function QuickEdit(Inventory_ID)
{
	w = 300;
	h = 150;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	window.open('/php/quick_editor.php?Inventory_ID=' + Inventory_ID, 'QuickEditor', 'left='+LeftPosition+', top='+TopPosition+', toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, width='+w+', height='+h);
}