var newwindow='';
function pickerPopup202(ifn,sam){
var bl=screen.width/2-102;
var bt=screen.height/2-104;
page="../includes/fcp202.html"+"?ifn="+escape(ifn)+"&sam="+escape(sam);
if(!newwindow.closed&&newwindow.location){
newwindow.location.href=page;
}
else{
newwindow=window.open(page,"CTRLWINDOW","help=no,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,dependent=yes,width=250,height=250,left="+bl+",top="+bt+",");
if(!newwindow.opener)newwindow.opener=self;
};
if(window.focus){
newwindow.focus()
}
if(newwindow.closed){
alert('new');
}
}

function changeColorCalc(){
var newwindow;
var color_title=document.getElementById('input_color_title').value;
var color_title=color_title.replace(/#/,"");
var color_text=document.getElementById('input_color_text').value;
var color_text=color_text.replace(/#/,"");
var color_btn_bcgr=document.getElementById('input_color_btn_bcgr').value;
var color_btn_bcgr=color_btn_bcgr.replace(/#/,"");
var color_box_bcgr=document.getElementById('input_color_box_bcgr').value;
var color_box_bcgr=color_box_bcgr.replace(/#/,"");
if((color_title.length==6 || color_title.length==0) && (color_text.length==6 || color_text.length==0) && 
(color_btn_bcgr.length==6 || color_btn_bcgr.length==0) && (color_box_bcgr.length==6 || color_box_bcgr.length==0)){
newwindow=window.open("../includes/calculator_frame.php?color_title="+color_title+"&color_text="+color_text+"&color_btn_bcgr="+color_btn_bcgr+"&color_box_bcgr="+color_box_bcgr,
"Calculator","resizable=0,width=450,height=450");
if(window.focus)newwindow.focus();
}
else{
alert("Некоректно попълнени данни!");
}
}
