FillText = null;

function DatePicker( dir_path ){
	FillText = event.srcElement.previousSibling.previousSibling;
	window.open( dir_path + 'include/datepicker.php','','width=230,height=200,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
}


function CheckControl( TableName , This ){
	eventObj = event.srcElement;
	obj = document.getElementById( TableName );
	for( i = 0 ; i < obj.rows.length ; i++ ){
		if( !obj.rows[i].cells[0].children[0].disabled ){
			obj.rows[i].cells[0].children[0].checked = eventObj.checked;
		}
	}
}

function OpenCenterWin( TargetURL, OpenWidth, OpenHeight, Features ){
	LeftPos = ( screen.availWidth - OpenWidth ) / 2;
	TopPos = ( screen.availHeight - OpenHeight ) / 2;
	if( Features != "" ) Features += ",";
	Features += "width=" + OpenWidth + ",height=" + OpenHeight + ",left=" + LeftPos + ",top=" + TopPos;
	window.open( TargetURL, null, Features );
}

function FilesPicker( dir_path , filepara ){
	if( filepara != null ){
		urlpara = "?filepara=" + filepara;
	}
	FillText = event.srcElement.previousSibling.previousSibling;
	window.open(dir_path+'include/filespicker.php'+urlpara,'','width=600,height=600,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
}

function FilesPickerForEditor( dir_path ){
	FillText = event.srcElement.previousSibling.previousSibling;
	window.open(dir_path+'include/filespicker.php?filepara=image/pjpeg|image/x-png|image/gif&htmleditor=true','','width=600,height=600,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
}

function FilesPickerForEditor_2( dir_path ){
	FillText = event.srcElement.previousSibling.previousSibling;
	window.open(dir_path+'include/filespicker.php?filepara=video/x-ms-wmv|video/mpg|video/mpg|application/vnd.rn-realmedia|application/x-shockwave-flash&htmleditor=true','','width=600,height=600,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
}


function PagesPicker( dir_path )
{
	FillText = event.srcElement.previousSibling.previousSibling;
	window.open(dir_path+'include/pagespicker.php','','width=500,height=665,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
}
function SelectPage( dir_path )
{
	FillText = event.srcElement.previousSibling.previousSibling;
	window.open(dir_path+'include/selectpage.php','','width=500,height=665,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
}
function OpenHtmlEditor( InputName , dir_path ){
	if( InputName != "" ){
		OpenCenterWin( dir_path + "Editor/index.php?InputName=" + InputName , 500 , 500 , "status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,top=50,left=120" );
	}else{
		alert( 'Error!!' );
	}
}
