//fullscreen//
function popItFullscreen(popUrl) {
	var popWidth = screen.width;
	var popHeight = screen.height;
	var newWindow = window.open(popUrl, "popup", "top=0,left=0,status=0,scrollbars,resizable,width=" + popWidth + ",height=" + popHeight);
}