/*function LinkPlaceholder_ChooseLink(id)
{
	var inp = document.getElementById(id);	
	inp.value = window.showModalDialog(
		IDS_FRAMEWORK_NEW_VIRTUAL_PATH + "/Dialogs/HLink/Hlink.aspx",
		inp.value, 
		"dialogWidth:650px;dialogHeight:500px;resizable;status:no;help:no");
}*/

function LinkPlaceholder_ChooseLink(id)
{
	inp = document.getElementById(id);		
	atoms = inp.value.split(";");	
	var args = new Object();		
	args.Href = atoms[0];
	args.Title = atoms[1];
	args.Target = atoms[2];
	args.Name = atoms[3];	

	var retVal = window.showModalDialog(
		IDS_FRAMEWORK_NEW_VIRTUAL_PATH + "/Dialogs/HLink/Hlink.aspx",
		args, 
		"dialogWidth:650px;dialogHeight:500px;resizable;status:no;help:no");
	if ( typeof(retVal) == "undefined" )
		return;
		
	if ( retVal == null)
	{
		return;
	}
	else
	{
		inp.value = retVal.Href + ";" + retVal.Title + ";" + retVal.Target + ";" + retVal.Name;
	}
}