// JavaScript Document

window.name = "ppal";

function abrir (pagina) {	

	var win_opt = "toolbar=0, location=0, directories=0, status=0,";

		win_opt += "menubar=0, scrollbars=0, resizable=0, copyhistory=0,";

		win_opt += "width=630, height=540, top=100, left=180";

		window.open(pagina,"Charter",win_opt);	

}

function open_window (pagina,width,height) {	

	var win_opt = "toolbar=0, location=0, directories=0, status=0,";

		win_opt += "menubar=0, scrollbars=0, resizable=0, copyhistory=0,";

		win_opt += "width="+width+", height="+height+", top=100, left=180";

		window.open(pagina,"Charter",win_opt);	

}


function openMessage_noclose() 
  {
    Shadowbox.open({
        player: "html",
        title: "",
        content: '<img src="http://www.tur-ven.com/images/idiomas-autobus.jpg" width="600" height="447">',
        height: 447,
        width: 600,
		handleOversize: "drag"
    }); 
  }