function open_culori2() {
	var sURL = 'paletar_culori.php';
	var imageWin = window.open(sURL, 'imageWin', 'height=850,width=530,scrollbars=0,resizable=0')	
}
function open_culori_normal() {
    var sURL = 'paletar_culori.php';
    var imageWin = window.open(sURL)    
}
function open_culori() {
var wihe = 'width='+screen.availWidth+',height='+screen.availHeight;
window.open("paletar_culori.php",
"culori",
"screenX=1,screenY=1,left=1,top=1," + wihe);
} 

function saveCV(id) {
	var sURL = 'aplica_cv.php?id=' + String(id);
	var imageWin = window.open(sURL, 'saveCV', 'height=250,width=410,scrollbars=1,resizable=1')	
}

function showInfoDiv() {
	div = document.getElementById("infoDiv");
	if (div.style.display=="none") {
		div.style.display="block";
	} else {
		div.style.display="none";
	}
}

function resizeMe() {

 var width=800;
 var height=550;
 
 self.resizeTo(width, height)
 var left = parseInt((screen.availWidth/2) - (width /2));
 var top = parseInt((screen.availHeight/2) - (height/2));
 //self.top=top+"px"
 self.moveTo(left,top)
}
