function open_custom( path,width,height) { 
	 window.open(path, 'aWindow',' width=' + width + ', height=' + height + ', menubar=no, location=no, resizable=yes, hotkeys=no, directories=no, scrollbars=yes, toolbar=no, titlebar=no, status=no');
} 
function open_image_link_win_big(path){
	open_custom(path,504,843); 
}
function choose_images(link,path){ 
	open_image_link_win_big(path+'/edit/popup/?link_def='+link); 
}

function open_window_generic(path,width,height,windowTitle) { 
	 window.open(path,windowTitle,' width=' + width + ', height=' + height + ', menubar=no, location=no, resizable=yes, hotkeys=no, directories=no, scrollbars=yes, toolbar=no, titlebar=no, status=no');
} 

