function makePath(sPath, sFile)
{
	var sString = '';

	if ( sFile.charAt(0) == '/' )
		sString = sPath + '/' + sFile.substr(1);
	else
		sString = sPath + '/' + sFile;

	return sString.replace(/\/\//g, '\/');
}