﻿function left(w) 
{ 
	var l =  (screen.width - w) / 2;
	return Math.round(l);
}

function top(h) 
{ 
	var t = (screen.height - h) / 2;
	return Math.round(t);
}

