//POP WINDOW
function popWindow(src, width, height) {
	var w = 800, h = 600;
	if (screen.width || screen.height) {
		w = screen.width;
		h = screen.height;
	}
	var leftPos = (w-width)/2;
	var topPos = (h-height)/2;
	window.open(''+src+'','','width='+width+',height='+height+',toolbar=no,status=no,menubar=no,scrollbars=no,resizeable=no,top=' + topPos + ',left=' + leftPos);
	void(0);
}