// JavaScript Document
//author: Fabrizio de Romanis

self.status = "www.ciclopeclimb.com";

function openVideoWindow(URL, name, w, h){
	window.open(URL, name, "'height=" + h + "px,width=" + w + "px'");
}


function OpenPopup(imgUrl, imgName) {
	var WND_W_MARGIN = 30;
	var WND_H_MARGIN = 80;
	var ImgPU = null;
	var WndPU = null;
    ImgPU = new Image();
    ImgPU.src = imgUrl;
	var wndWidth = ImgPU.width + WND_W_MARGIN;
    var wndHeight = ImgPU.height + WND_H_MARGIN;
    WndPU = window.open(ImgPU.src,
        imgName,
        "width=" + wndWidth + ", height=" + wndHeight + ", toolbar=no, location=no,status=no,menubar=no,scrollbars=no,resizable=no'");
    WndPU.resizeTo(wndWidth, wndHeight);
    WndPU.focus();
}

function openLink(theURL) { 
  window.open(theURL,"", "");
}

function openVideoWindow(URL){
	window.open(URL, "", "width=" + 600+ "px, height=" + 200 + "px, left=20px, top=20px, reizable=no");
}