function popup(url) {
window.open(url,'_blank','toolbar=1, location=1, directories=1, status=1, scrollbars=1, resizable=1, copyhistory=1, menuBar=1');
return(false)
}
function pop(name, path, width, height) {
	
	var win = window.open(path, name, "width=" + width + ",height=" + height + ",directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no");
	
	win.moveTo(
		(screen.width - width) / 2
		, (screen.height - height) / 2)
	return win 
}
function popscroll(name, path, width, height) {
	var win = window.open(path, name, "width=" + width + ",height=" + height + ",directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no");
	win.moveTo(
		(screen.width - width) / 2
		, (screen.height - height) / 2)
	return win 
}
function popsims() {
	pop('sims', 'templates/rosport_blue/aygo/index.php', 790, 500);
}
function popwalle() {
	pop('wall_e', 'templates/rosport_viva/wall-e/lots.htm', 790, 520);
}
